-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathflake.nix
More file actions
28 lines (27 loc) · 822 Bytes
/
flake.nix
File metadata and controls
28 lines (27 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.nixpkgs-minion.url = "github:Minion3665/nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils, nixpkgs-minion }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
pkgs-minion = nixpkgs-minion.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = [
(pkgs-minion.python3.withPackages (pyPkgs: with pyPkgs;
[
smbus2
opencv3
fake-rpi
scipy
wiringpi
]))
];
buildInputs = [ ];
};
});
}