linux_6_1: 6.1.117 -> 6.1.118
[NixPkgs.git] / pkgs / development / haskell-modules / non-hackage-packages.nix
blobc5cfbcec0313bbdc54b6b92128724b62b9d920cf
1 { pkgs, haskellLib }:
3 # EXTRA HASKELL PACKAGES NOT ON HACKAGE
5 # This file should only contain packages that are not in ./hackage-packages.nix.
6 # Attributes in this set should be nothing more than a callPackage call.
7 # Overrides to these packages should go to either configuration-nix.nix,
8 # configuration-common.nix or to one of the compiler specific configuration
9 # files.
10 self: super: {
12   changelog-d = self.callPackage ../misc/haskell/changelog-d {};
14   dconf2nix = self.callPackage ../tools/haskell/dconf2nix/dconf2nix.nix { };
16   # Used by maintainers/scripts/regenerate-hackage-packages.sh, and generated
17   # from the latest master instead of the current version on Hackage.
18   cabal2nix-unstable = self.callPackage ./cabal2nix-unstable.nix { };
20   ghc-settings-edit = self.callPackage ../tools/haskell/ghc-settings-edit { };
22   # https://github.com/channable/vaultenv/issues/1
23   vaultenv = self.callPackage ../tools/haskell/vaultenv { };
25   # spago is not released to Hackage.
26   # https://github.com/spacchetti/spago/issues/512
27   spago = self.callPackage ../tools/purescript/spago/spago.nix { };
29   nix-linter = self.callPackage ../../development/tools/analysis/nix-linter { };
31   # hasura graphql-engine is not released to hackage.
32   # https://github.com/hasura/graphql-engine/issues/7391
33   ci-info = self.callPackage ../misc/haskell/hasura/ci-info.nix {};
34   pg-client = self.callPackage ../misc/haskell/hasura/pg-client.nix {};
35   graphql-parser = self.callPackage ../misc/haskell/hasura/graphql-parser.nix {};
36   graphql-engine = self.callPackage ../misc/haskell/hasura/graphql-engine.nix {};
37   kriti-lang = self.callPackage ../misc/haskell/hasura/kriti-lang.nix {};
38   hasura-resource-pool = self.callPackage ../misc/haskell/hasura/pool.nix {};
39   hasura-ekg-core = self.callPackage ../misc/haskell/hasura/ekg-core.nix {};
40   hasura-ekg-json = self.callPackage ../misc/haskell/hasura/ekg-json.nix {};
42   # Unofficial fork until PRs are merged https://github.com/pcapriotti/optparse-applicative/pulls/roberth
43   # cabal2nix --maintainer roberth https://github.com/hercules-ci/optparse-applicative.git > pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix
44   hercules-ci-optparse-applicative = self.callPackage ../misc/haskell/hercules-ci-optparse-applicative.nix {};