mirror of
https://github.com/malmeloo/FindMy.py.git
synced 2026-04-17 18:54:03 +02:00
22 lines
334 B
Nix
22 lines
334 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
|
|
let
|
|
unstable = import (fetchTarball "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz") { };
|
|
in
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
python312
|
|
unstable.uv
|
|
gh
|
|
graphviz
|
|
];
|
|
|
|
shellHook = ''
|
|
if [[ -d .venv/ ]]; then
|
|
source .venv/bin/activate
|
|
fi
|
|
'';
|
|
}
|