dockerfiles/flake.nix

17 lines
502 B
Nix
Raw Permalink Normal View History

2023-01-08 17:42:17 +01:00
{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
2023-02-12 16:24:04 +01:00
nativeBuildInputs =
[ pkgs.podman pkgs.buildah pkgs.skopeo ];
2023-01-08 17:42:17 +01:00
buildInputs = [ ];
};
});
}