mirror of
https://github.com/containers/crun.git
synced 2026-02-05 15:45:25 +01:00
Deduplicate code and cleanup the nix derivation based on the input. Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
9 lines
181 B
Nix
9 lines
181 B
Nix
{ enableSystemd ? true }:
|
|
(import ./nixpkgs.nix {
|
|
overlays = [ (import ./overlay.nix) ];
|
|
}).callPackage ./derivation.nix
|
|
{
|
|
enableCriu = true;
|
|
enableSystemd = enableSystemd;
|
|
}
|