7b49b870cb
We had a few "overrides" in configuration-common.nix that were really extensions. They introduced packages that weren't in hackage-packages.nix. The advantage of having a dedicated file for these packages is that we can still place Nix-specific overrides to these packages in configuration-nix.nix. We weren't able do this before because configuration-nix.nix extended only the packages from hackage-packages.nix.
15 lines
566 B
Nix
15 lines
566 B
Nix
# 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: {
|
|
multi-ghc-travis = self.callPackage ../tools/haskell/multi-ghc-travis { };
|
|
|
|
vaultenv = self.callPackage ../tools/haskell/vaultenv { };
|
|
|
|
futhark = self.callPackage ../compilers/futhark { };
|
|
}
|