Compare commits

..

No commits in common. "2b097045bca06e3b0fc338d5b142ba889dd35898" and "c866015907cac4e0e27462eb64330800227a1de0" have entirely different histories.

4 changed files with 1 additions and 38 deletions

View File

@ -1,14 +0,0 @@
{
description = "";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShell = import ./shell.nix { inherit pkgs; };
}
);
}

View File

@ -1,8 +0,0 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [ stdenv.cc.cc openssl ];
NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker";
}

View File

@ -2,7 +2,7 @@
with pkgs; with pkgs;
mkShell { {
buildInputs = [ buildInputs = [
python3 python3
python3Packages.jupyter python3Packages.jupyter
@ -12,10 +12,4 @@ mkShell {
python3Packages.matplotlib python3Packages.matplotlib
python3Packages.seaborn python3Packages.seaborn
]; ];
shellHook = ''
trap "kill 0" EXIT
jupyter notebook
'';
} }

View File

@ -1,9 +0,0 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
];
}