Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 23 lines 594 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, tkinter, supercollider }: 2 3buildPythonPackage rec { 4 pname = "FoxDot"; 5 version = "0.8.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "147n2c9rwmrby8rr6xfxlh7mfm12lqk2a7v1gxlzhq1i2jj1j5h4"; 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}