Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a674658

Browse files
committed
added NixOS FHS shell.nix
1 parent 030a9f9 commit a674658

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

pythonnet.sln

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Repo", "Repo", "{441A0123-F
2020
LICENSE = LICENSE
2121
README.rst = README.rst
2222
version.txt = version.txt
23+
shell.nix = shell.nix
2324
EndProjectSection
2425
EndProject
2526
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CI", "CI", "{D301657F-5EAF-4534-B280-B858D651B2E5}"

shell.nix

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{ pkgs ? import <nixpkgs> {}}:
2+
let
3+
fhs = pkgs.buildFHSUserEnv {
4+
name = "my-fhs-environment";
5+
6+
targetPkgs = _: [
7+
pkgs.python3
8+
];
9+
};
10+
in fhs.env

0 commit comments

Comments
 (0)