mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
c6b62f2381
The distinction between the inputs doesn't really make sense in the mkShell context. Technically speaking, we should be using the nativeBuildInputs most of the time. So in order to make this function more beginner-friendly, add "packages" as an attribute, that maps to nativeBuildInputs. This commit also updates all the uses in nixpkgs.
11 lines
148 B
Nix
11 lines
148 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.mkShell {
|
|
packages = [
|
|
pkgs.poetry2nix.cli
|
|
pkgs.pkg-config
|
|
pkgs.libvirt
|
|
pkgs.poetry
|
|
];
|
|
}
|