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