2018-08-25 14:24:41 +01:00
|
|
|
# EXTRA HASKELL PACKAGES NOT ON HACKAGE
|
|
|
|
#
|
|
|
|
# This file should only contain packages that are not in ./hackage-packages.nix.
|
|
|
|
# Attributes in this set should be nothing more than a callPackage call.
|
|
|
|
# Overrides to these packages should go to either configuration-nix.nix,
|
|
|
|
# configuration-common.nix or to one of the compiler specific configuration
|
|
|
|
# files.
|
|
|
|
self: super: {
|
2018-08-25 14:54:17 +01:00
|
|
|
|
2020-08-07 21:08:37 +01:00
|
|
|
dconf2nix = self.callPackage ../tools/haskell/dconf2nix/dconf2nix.nix { };
|
|
|
|
|
2020-09-25 15:34:39 +01:00
|
|
|
ldgallery-compiler = self.callPackage ../../tools/graphics/ldgallery/compiler { };
|
|
|
|
|
2020-05-04 00:01:57 +01:00
|
|
|
# Used by maintainers/scripts/regenerate-hackage-packages.sh, and generated
|
|
|
|
# from the latest master instead of the current version on Hackage.
|
2021-05-04 12:38:29 +01:00
|
|
|
cabal2nix-unstable = self.callPackage ./cabal2nix-unstable.nix { };
|
2020-05-04 00:01:57 +01:00
|
|
|
|
2018-08-25 14:54:30 +01:00
|
|
|
# https://github.com/channable/vaultenv/issues/1
|
2018-08-25 14:24:41 +01:00
|
|
|
vaultenv = self.callPackage ../tools/haskell/vaultenv { };
|
2019-08-23 15:49:38 +01:00
|
|
|
|
2019-11-29 01:13:35 +00:00
|
|
|
# spago is not released to Hackage.
|
|
|
|
# https://github.com/spacchetti/spago/issues/512
|
2019-12-20 07:12:29 +00:00
|
|
|
spago = self.callPackage ../tools/purescript/spago/spago.nix { };
|
2020-06-25 13:23:09 +01:00
|
|
|
|
2021-06-16 06:16:23 +01:00
|
|
|
nix-linter = self.callPackage ../../development/tools/analysis/nix-linter { };
|
|
|
|
|
2020-10-09 21:43:10 +01:00
|
|
|
nix-output-monitor = self.callPackage ../../tools/nix/nix-output-monitor { };
|
|
|
|
|
2021-08-15 14:48:53 +01:00
|
|
|
# hasura graphql-engine is not released to hackage.
|
|
|
|
# https://github.com/hasura/graphql-engine/issues/7391
|
|
|
|
ci-info = self.callPackage ../misc/haskell/hasura/ci-info.nix {};
|
2021-08-17 07:58:54 +01:00
|
|
|
pg-client = self.callPackage ../misc/haskell/hasura/pg-client.nix {};
|
2021-08-15 14:48:53 +01:00
|
|
|
graphql-parser = self.callPackage ../misc/haskell/hasura/graphql-parser.nix {};
|
2021-08-17 07:58:54 +01:00
|
|
|
graphql-engine = self.callPackage ../misc/haskell/hasura/graphql-engine.nix {};
|
|
|
|
hasura-resource-pool = self.callPackage ../misc/haskell/hasura/pool.nix {};
|
|
|
|
hasura-ekg-core = self.callPackage ../misc/haskell/hasura/ekg-core.nix {};
|
|
|
|
hasura-ekg-json = self.callPackage ../misc/haskell/hasura/ekg-json.nix {};
|
2021-03-07 12:40:17 +00:00
|
|
|
|
|
|
|
# Unofficial fork until PRs are merged https://github.com/pcapriotti/optparse-applicative/pulls/roberth
|
|
|
|
# cabal2nix --maintainer roberth https://github.com/hercules-ci/optparse-applicative.git > pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix
|
|
|
|
hercules-ci-optparse-applicative = self.callPackage ../misc/haskell/hercules-ci-optparse-applicative.nix {};
|
2018-08-25 14:24:41 +01:00
|
|
|
}
|