about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-01-21 15:26:30 +0100
committerGitHub <noreply@github.com>2019-01-21 15:26:30 +0100
commitcf024f9a7471338cc9eb24ffe893573feaf68c9e (patch)
tree2e40f904549115b7bae0596f472d11b8aa78c74b /pkgs/tools
parentf9816bd6b0bd48504bd8ce8d89c24d647e81b539 (diff)
parente90d43b389f05f523ffc2909fc69be8d596f5c8c (diff)
downloadnixlib-cf024f9a7471338cc9eb24ffe893573feaf68c9e.tar
nixlib-cf024f9a7471338cc9eb24ffe893573feaf68c9e.tar.gz
nixlib-cf024f9a7471338cc9eb24ffe893573feaf68c9e.tar.bz2
nixlib-cf024f9a7471338cc9eb24ffe893573feaf68c9e.tar.lz
nixlib-cf024f9a7471338cc9eb24ffe893573feaf68c9e.tar.xz
nixlib-cf024f9a7471338cc9eb24ffe893573feaf68c9e.tar.zst
nixlib-cf024f9a7471338cc9eb24ffe893573feaf68c9e.zip
Merge pull request #54375 from dywedir/termtosvg
termtosvg: 0.7.0 -> 0.8.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/termtosvg/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/termtosvg/default.nix b/pkgs/tools/misc/termtosvg/default.nix
index 1dca7f4a70bd..9912202f867e 100644
--- a/pkgs/tools/misc/termtosvg/default.nix
+++ b/pkgs/tools/misc/termtosvg/default.nix
@@ -2,20 +2,20 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "termtosvg";
-  version = "0.7.0";
+  version = "0.8.0";
 
   # tests are not available when fetching from pypi
   src = fetchFromGitHub {
     owner = "nbedos";
     repo = pname;
     rev = version;
-    sha256 = "17hhdrsn9ggcrwqp2c1h2la9cwhdazfrczd7nnm5mz7w6rk25lx3";
+    sha256 = "0si5l8cdbzapcibr4yavhld2vhfrpk7qj4cy7m4ws7js8g9iwzd4";
   };
 
   propagatedBuildInputs = with python3.pkgs; [ lxml pyte ];
 
   meta = with lib; {
-    homepage = https://github.com/nbedos/termtosvg;
+    homepage = https://nbedos.github.io/termtosvg/;
     description = "Record terminal sessions as SVG animations";
     license = licenses.bsd3;
     maintainers = with maintainers; [ ma27 ];