mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
2d272e93c8
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-foxdot/versions
24 lines
594 B
Nix
24 lines
594 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, tkinter, supercollider }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "FoxDot";
|
|
version = "0.8.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "07ll1rh1bkq1dpb7gxd86jsjhxni73kp9iljiy0d2b86ji8h108p";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|