2022-12-02 00:21:38 +01:00
|
|
|
let flake = import ./nix/compat.nix;
|
|
|
|
in
|
|
|
|
{ pkgs ? import flake.inputs.nixpkgs { }
|
2019-09-28 16:27:07 +02:00
|
|
|
, haskellPackages ? pkgs.haskellPackages
|
|
|
|
}:
|
2022-12-02 00:21:38 +01:00
|
|
|
let
|
|
|
|
pkgsWithArion = pkgs.extend flake.overlays.default;
|
|
|
|
in
|
2018-12-17 19:08:38 +01:00
|
|
|
{
|
2022-12-02 00:21:38 +01:00
|
|
|
inherit (pkgsWithArion) arion;
|
2018-12-17 19:08:38 +01:00
|
|
|
}
|