arion/nix/arion.nix

14 lines
458 B
Nix
Raw Normal View History

2020-10-05 18:01:25 +03:00
# Like the upstreamable expression but wired up for the local arion.
2019-09-28 17:27:07 +03:00
{ pkgs ? import ./. {}
, lib ? pkgs.lib
2020-10-05 18:01:25 +03:00
, haskell ? pkgs.haskell
2019-09-28 17:27:07 +03:00
, haskellPackages ? pkgs.haskellPackages
, arion-compose ? import ./haskell-arion-compose.nix { inherit pkgs haskellPackages; }
2020-10-05 18:01:25 +03:00
, runCommand ? pkgs.runCommand
2019-09-28 17:27:07 +03:00
}:
2020-10-05 18:01:25 +03:00
import ./upstreamable/default.nix {
inherit pkgs lib haskell runCommand;
haskellPackages = haskellPackages // { inherit arion-compose; };
evalSrc = ./..;
2020-10-05 18:01:25 +03:00
}