Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
Merge pull request #6 from link2xt/shell-nix
Browse files Browse the repository at this point in the history
Add shell.nix
  • Loading branch information
Simon-Laux committed Sep 1, 2019
2 parents 4de0e51 + cf041f1 commit 35c13c1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{ pkgs ? import <nixpkgs> {} }:

with pkgs;
let
my-python-packages = python-packages: with python-packages; [
virtualenv
pytest
];
my-python = python3.withPackages my-python-packages;
in mkShell {
buildInputs = [
vscodium
rustup
nodejs
my-python
];
}

0 comments on commit 35c13c1

Please sign in to comment.