mirror of
https://github.com/hercules-ci/arion.git
synced 2024-11-22 15:24:26 +03:00
12 lines
223 B
Nix
12 lines
223 B
Nix
let flake = import ./nix/compat.nix;
|
|
in
|
|
{ pkgs ? import flake.inputs.nixpkgs { }
|
|
, haskellPackages ? pkgs.haskellPackages
|
|
}:
|
|
let
|
|
pkgsWithArion = pkgs.extend flake.overlays.default;
|
|
in
|
|
{
|
|
inherit (pkgsWithArion) arion;
|
|
}
|