-
Notifications
You must be signed in to change notification settings - Fork 49
/
flake.nix
30 lines (28 loc) · 905 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
description = "nix2container: build container image with Nix";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
nix2container = import ./. {
inherit pkgs system;
};
examples = import ./examples {
inherit pkgs;
inherit (nix2container) nix2container;
};
tests = import ./tests {
inherit pkgs examples;
inherit (nix2container) nix2container;
};
in
rec {
packages = {
inherit (nix2container) nix2container-bin skopeo-nix2container nix2container;
inherit examples tests;
};
defaultPackage = packages.nix2container-bin;
});
}