about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/foxdot/default.nix
blob: 4b606f277249360d18f39def33e63816075b2c07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, tkinter
, supercollider
}:

buildPythonPackage rec {
  pname = "FoxDot";
  version = "0.8.12";

  src = fetchPypi {
    inherit pname version;
    sha256 = "528999da55ad630e540a39c0eaeacd19c58c36f49d65d24ea9704d0781e18c90";
  };

  propagatedBuildInputs = [ tkinter ]
    # we currently build SuperCollider only on Linux
    # but FoxDot is totally usable on macOS with the official SuperCollider binary
    ++ lib.optionals stdenv.isLinux [ supercollider ];

  # Requires a running SuperCollider instance
  doCheck = false;

  meta = with lib; {
    description = "Live coding music with SuperCollider";
    homepage = "https://foxdot.org/";
    license = licenses.cc-by-sa-40;
    maintainers = with maintainers; [ mrmebelman ];
  };
}