mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
24 lines
594 B
Nix
24 lines
594 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, tkinter, supercollider }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "FoxDot";
|
|
version = "0.8.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "147n2c9rwmrby8rr6xfxlh7mfm12lqk2a7v1gxlzhq1i2jj1j5h4";
|
|
};
|
|
|
|
propagatedBuildInputs = [ tkinter supercollider ];
|
|
|
|
# Requires a running SuperCollider instance
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Live coding music with SuperCollider";
|
|
homepage = https://foxdot.org/;
|
|
license = licenses.cc-by-sa-40;
|
|
maintainers = with maintainers; [ mrmebelman ];
|
|
};
|
|
}
|