master-thesis/shell.nix
2021-09-18 17:37:33 +02:00

7 lines
190 B
Nix

{ pkgs ? import <nixos> {}}:
pkgs.gcc11Stdenv.mkDerivation rec {
#in pkgs.mkShell rec {
name = "dev-shell";
inputsFrom = with pkgs; [ ];
buildInputs = with pkgs; [ python rmapi ];
}