summary refs log tree commit diff
path: root/pkgs/servers/tautulli
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-12 09:23:24 +0000
committerAlyssa Ross <hi@alyssa.is>2020-03-14 21:10:15 +0000
commitdece4b99fa8096c90e0caa1dc1d2cccbf1531733 (patch)
tree650637459980ab6e4ed6aff61beb044f69811ad7 /pkgs/servers/tautulli
parent20ef86ed52f30ae3c6a6c51599c344bb3df3fedc (diff)
downloadnixpkgs-dece4b99fa8096c90e0caa1dc1d2cccbf1531733.tar
nixpkgs-dece4b99fa8096c90e0caa1dc1d2cccbf1531733.tar.gz
nixpkgs-dece4b99fa8096c90e0caa1dc1d2cccbf1531733.tar.bz2
nixpkgs-dece4b99fa8096c90e0caa1dc1d2cccbf1531733.tar.lz
nixpkgs-dece4b99fa8096c90e0caa1dc1d2cccbf1531733.tar.xz
nixpkgs-dece4b99fa8096c90e0caa1dc1d2cccbf1531733.tar.zst
nixpkgs-dece4b99fa8096c90e0caa1dc1d2cccbf1531733.zip
tautulli: 2.1.44 -> 2.2.0
Diffstat (limited to 'pkgs/servers/tautulli')
-rw-r--r--pkgs/servers/tautulli/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/tautulli/default.nix b/pkgs/servers/tautulli/default.nix
index e088c319d40..32102dd48b5 100644
--- a/pkgs/servers/tautulli/default.nix
+++ b/pkgs/servers/tautulli/default.nix
@@ -1,7 +1,7 @@
 {stdenv, fetchFromGitHub, python }:
 
 stdenv.mkDerivation rec {
-  version = "2.1.44";
+  version = "2.2.0";
   pname = "Tautulli";
 
   pythonPath = [ python.pkgs.setuptools ];
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
     owner = "Tautulli";
     repo = pname;
     rev = "v${version}";
-    sha256 = "07nbxz30v8rkvd3xyzc124gv3dpz6bllw6xl6kql0q5gqn05w96s";
+    sha256 = "10ahmgm4pr7lz39qcmgjqzlp435i2dasd6y47zpi1c5fy62jq4is";
   };
 
   buildPhase = ":";
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
 
   meta  = with stdenv.lib; {
     description = "A Python based monitoring and tracking tool for Plex Media Server.";
-    homepage = https://tautulli.com/;
+    homepage = "https://tautulli.com/";
     license = licenses.gpl3;
     platforms = platforms.linux;
     maintainers = with stdenv.lib.maintainers; [ csingley ];