about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorKirill Elagin <kirelagin@gmail.com>2020-04-19 17:15:17 +0300
committerKirill Elagin <kirelagin@gmail.com>2020-04-19 21:59:13 +0300
commitbff2c1258eb2cce8d78dbce343cb36232d2272e3 (patch)
tree4c6b1ef41f1e6d089aac1daebda00190d9b0de99 /pkgs/applications
parent171e99adb204669c8b7d51445a149089c9a32ded (diff)
downloadnixlib-bff2c1258eb2cce8d78dbce343cb36232d2272e3.tar
nixlib-bff2c1258eb2cce8d78dbce343cb36232d2272e3.tar.gz
nixlib-bff2c1258eb2cce8d78dbce343cb36232d2272e3.tar.bz2
nixlib-bff2c1258eb2cce8d78dbce343cb36232d2272e3.tar.lz
nixlib-bff2c1258eb2cce8d78dbce343cb36232d2272e3.tar.xz
nixlib-bff2c1258eb2cce8d78dbce343cb36232d2272e3.tar.zst
nixlib-bff2c1258eb2cce8d78dbce343cb36232d2272e3.zip
gmailieer: 1.0 -> 1.1, rename to lieer
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/lieer/default.nix (renamed from pkgs/applications/networking/gmailieer/default.nix)12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/networking/gmailieer/default.nix b/pkgs/applications/networking/lieer/default.nix
index 2acc838e4a4f..fc5214f0d01f 100644
--- a/pkgs/applications/networking/gmailieer/default.nix
+++ b/pkgs/applications/networking/lieer/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, python3Packages }:
 
 python3Packages.buildPythonApplication rec {
-  name = "gmailieer-${version}";
-  version = "1.0";
+  pname = "lieer";
+  version = "1.1";
 
   src = fetchFromGitHub {
     owner = "gauteh";
-    repo = "gmailieer";
+    repo = "lieer";
     rev = "v${version}";
-    sha256 = "1zzylv8xbcrh34bz0s29dawzcyx39lai8y8wk0bl4x75v1jfynvf";
+    sha256 = "19jx3sm925nrzl26km1bxbp6y5gk1mzwadd79vip2jl70b3xk9f8";
   };
 
   propagatedBuildInputs = with python3Packages; [
@@ -27,8 +27,8 @@ python3Packages.buildPythonApplication rec {
       tags in the notmuch database may be pushed back remotely to your
       GMail account.
     '';
-    homepage         = "https://github.com/gauteh/gmailieer";
-    repositories.git = "https://github.com/gauteh/gmailieer.git";
+    homepage         = "https://lieer.gaute.vetsj.com/";
+    repositories.git = "https://github.com/gauteh/lieer.git";
     license          = licenses.gpl3Plus;
     maintainers      = with maintainers; [ kaiha ];
   };