mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
24 lines
587 B
Nix
24 lines
587 B
Nix
{ lib, buildPythonPackage, fetchPypi, tkinter, supercollider }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "FoxDot";
|
|
version = "0.8.11";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "00yqpkv7cxwk301cyiwjzr9yfq8hpnhqyspw3z874ydrl3cmssdb";
|
|
};
|
|
|
|
propagatedBuildInputs = [ tkinter 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 ];
|
|
};
|
|
}
|