Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

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

authored by

R. RyanTM and committed by
worldofpeace
daf6e558 4f5063d5

+4 -3
+4 -3
pkgs/tools/misc/ttyplot/default.nix
··· 1 1 { stdenv, fetchFromGitHub, ncurses }: 2 + 2 3 stdenv.mkDerivation rec { 3 4 name = "ttyplot-${version}"; 4 - version = "1.0"; 5 + version = "1.1"; 5 6 6 7 src = fetchFromGitHub { 7 8 owner = "tenox7"; 8 9 repo = "ttyplot"; 9 10 rev = version; 10 - sha256 = "1i54hw7fad42gdlrlqg7s0vhsq01yxzdi2s0r3svwbb1sr7ynzn1"; 11 + sha256 = "0icv40fmf8z3a00csjh4c4svq3y6s6j70jgxjd6zqlxyks9wj7mr"; 11 12 }; 12 13 13 14 buildInputs = [ ncurses ]; ··· 22 23 ''; 23 24 24 25 meta = with stdenv.lib; { 25 - description = "a simple general purpose plotting utility for tty with data input from stdin."; 26 + description = "A simple general purpose plotting utility for tty with data input from stdin"; 26 27 homepage = https://github.com/tenox7/ttyplot; 27 28 license = licenses.unlicense; 28 29 maintainers = with maintainers; [ lassulus ];