nixpkgs/pkgs/applications/networking/cluster/nixops/shell.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
167 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
packages = [
2022-10-07 05:49:13 +00:00
pkgs.python310
pkgs.poetry2nix.cli
pkgs.pkg-config
pkgs.libvirt
2022-10-07 05:49:13 +00:00
pkgs.poetry
];
}