nixos/templates/indica.nix

19 lines
284 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation {
pname = "indica-notebook";
version = "1.0.0";
buildInputs = with pkgs; [
(python39.withPackages (ps: with ps; [
jupyter
]))
];
configurePhase = '''';
buildPhase = '''';
installPhase = '''';
}