summary refs log tree commit diff
path: root/pkgs/misc/cbeams
diff options
context:
space:
mode:
authorgeistesk <github.jyf300hj@0x21.biz>2020-03-07 19:53:45 +0100
committergeistesk <github.jyf300hj@0x21.biz>2020-04-22 09:44:38 +0200
commit2e9cfaf3cf16c2669f5fe809e6305a419a2d68f0 (patch)
treeca027350d134e16589f6da512a1b2fc42436d705 /pkgs/misc/cbeams
parentc5e223e1202424a5cef48d37f1f0c400f9a1b72b (diff)
downloadnixpkgs-2e9cfaf3cf16c2669f5fe809e6305a419a2d68f0.tar
nixpkgs-2e9cfaf3cf16c2669f5fe809e6305a419a2d68f0.tar.gz
nixpkgs-2e9cfaf3cf16c2669f5fe809e6305a419a2d68f0.tar.bz2
nixpkgs-2e9cfaf3cf16c2669f5fe809e6305a419a2d68f0.tar.lz
nixpkgs-2e9cfaf3cf16c2669f5fe809e6305a419a2d68f0.tar.xz
nixpkgs-2e9cfaf3cf16c2669f5fe809e6305a419a2d68f0.tar.zst
nixpkgs-2e9cfaf3cf16c2669f5fe809e6305a419a2d68f0.zip
cbeams: init at 1.0.3
Diffstat (limited to 'pkgs/misc/cbeams')
-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 00000000000..ec045ebf3ef
--- /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 ];
+  };
+}