summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/cbeams/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/cbeams/default.nix')
-rw-r--r--pkgs/misc/cbeams/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/misc/cbeams/default.nix b/pkgs/misc/cbeams/default.nix
new file mode 100644
index 000000000000..ec045ebf3efd
--- /dev/null
+++ b/pkgs/misc/cbeams/default.nix
@@ -0,0 +1,21 @@
+{ lib, buildPythonApplication, fetchPypi, isPy3k, blessings, docopt }:
+
+buildPythonApplication rec {
+ pname = "cbeams";
+ version = "1.0.3";
+ disabled = !isPy3k;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1agcjg6kmcyvk834xd2j60mi349qi9iw3dc2vwpd7pqwq1daq3gi";
+ };
+
+ propagatedBuildInputs = [ blessings docopt ];
+
+ meta = with lib; {
+ homepage = "https://github.com/tartley/cbeams";
+ description = "Command-line program to draw animated colored circles in the terminal";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ geistesk ];
+ };
+}