mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-26 10:05:39 +03:00
26 lines
607 B
Nix
26 lines
607 B
Nix
self: super:
|
|
let
|
|
inherit (self.arion-project) haskellPkgs;
|
|
inherit (super) lib;
|
|
|
|
in
|
|
{
|
|
|
|
arion = import ./arion.nix { pkgs = self; };
|
|
tests = super.callPackage ../tests {};
|
|
doc = super.callPackage ../doc {};
|
|
|
|
arion-project = super.recurseIntoAttrs {
|
|
haskellPkgs = super.haskellPackages.extend (import ./haskell-overlay.nix self super);
|
|
shell = haskellPkgs.shellFor {
|
|
packages = p: [p.arion-compose];
|
|
buildInputs = [
|
|
haskellPkgs.cabal-install
|
|
haskellPkgs.ghcid
|
|
super.docker-compose
|
|
(import ~/h/ghcide-nix {}).ghcide-ghc864
|
|
];
|
|
};
|
|
};
|
|
}
|