about summary refs log tree commit diff
path: root/pkgs/tools/misc/ttyplot
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-12-13 18:48:57 -0800
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-12-14 06:17:01 -0500
commitdaf6e558013bdc0068e1fbdbe8d1dcfbed2d7cff (patch)
tree85fc8184d47c0e508b70911500fefad09b64c3ac /pkgs/tools/misc/ttyplot
parent4f5063d5eb333f1d689f14a7a96d31ed03ba761b (diff)
ttyplot: 1.0 -> 1.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ttyplot/versions
Diffstat (limited to 'pkgs/tools/misc/ttyplot')
-rw-r--r--pkgs/tools/misc/ttyplot/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/misc/ttyplot/default.nix b/pkgs/tools/misc/ttyplot/default.nix
index 9fdac0b8b9cc1..d82c7dda96a4b 100644
--- a/pkgs/tools/misc/ttyplot/default.nix
+++ b/pkgs/tools/misc/ttyplot/default.nix
@@ -1,13 +1,14 @@
 { stdenv, fetchFromGitHub, ncurses }:
+
 stdenv.mkDerivation rec {
   name = "ttyplot-${version}";
-  version = "1.0";
+  version = "1.1";
 
   src = fetchFromGitHub {
     owner = "tenox7";
     repo = "ttyplot";
     rev = version;
-    sha256 = "1i54hw7fad42gdlrlqg7s0vhsq01yxzdi2s0r3svwbb1sr7ynzn1";
+    sha256 = "0icv40fmf8z3a00csjh4c4svq3y6s6j70jgxjd6zqlxyks9wj7mr";
   };
 
   buildInputs = [ ncurses ];
@@ -22,7 +23,7 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "a simple general purpose plotting utility for tty with data input from stdin.";
+    description = "A simple general purpose plotting utility for tty with data input from stdin";
     homepage = https://github.com/tenox7/ttyplot;
     license = licenses.unlicense;
     maintainers = with maintainers; [ lassulus ];