mirror of
https://github.com/vale981/master-thesis
synced 2025-03-04 17:41:43 -05:00
8 lines
190 B
Nix
8 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 ];
|
||
|
}
|