mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
11 lines
149 B
Nix
11 lines
149 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.poetry2nix.cli
|
|
pkgs.pkgconfig
|
|
pkgs.libvirt
|
|
pkgs.poetry
|
|
];
|
|
}
|