arion/default.nix

12 lines
223 B
Nix
Raw Normal View History

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