Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 597 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, tkinter, supercollider }: 2 3buildPythonPackage rec { 4 pname = "FoxDot"; 5 version = "0.8.11"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "00yqpkv7cxwk301cyiwjzr9yfq8hpnhqyspw3z874ydrl3cmssdb"; 10 }; 11 12 propagatedBuildInputs = [ tkinter supercollider ]; 13 14 # Requires a running SuperCollider instance 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 description = "Live coding music with SuperCollider"; 19 homepage = "https://foxdot.org/"; 20 license = licenses.cc-by-sa-40; 21 maintainers = with maintainers; [ mrmebelman ]; 22 }; 23}