Skip to content

Commit fac803f

Browse files
committed
Update nix/shell.nix to include myProject as a build input
1 parent 43945ad commit fac803f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

nix/shell.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{ pkgs ? import <nixpkgs> {} }:
2-
2+
let
3+
myProject = import ./project.nix { pkgs = pkgs; };
4+
in
35
pkgs.mkShell {
46
buildInputs = [
57
pkgs.python3
8+
myProject
69
pkgs.git
710
pkgs.curl
811
];

0 commit comments

Comments
 (0)