blob: 32c95eeea830b2972919f0c0fd9c3b9692285a34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ pkgs ? import <nixpkgs> {} }:
let
pypkgs = p: with p; [
foxdot
tkinter
];
py = pkgs.python3.withPackages pypkgs;
in
pkgs.mkShell {
packages = with pkgs; [
py
supercollider
];
}
|