mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-01 10:17:02 +00:00
10 lines
149 B
Nix
10 lines
149 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.poetry2nix.cli
|
|
pkgs.pkgconfig
|
|
pkgs.libvirt
|
|
pkgs.poetry
|
|
];
|
|
}
|