about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2020-04-20 05:38:13 +0100
committerGitHub <noreply@github.com>2020-04-20 05:38:13 +0100
commitb442f8ea9f2107a825838a2d260f37f421b86969 (patch)
treef524570266885e9e8c28e8ec4ed9a6cf028944da /pkgs/applications
parente4db75f46dc54e55a86d5c09f752e9dc334ac076 (diff)
parentbff2c1258eb2cce8d78dbce343cb36232d2272e3 (diff)
downloadnixlib-b442f8ea9f2107a825838a2d260f37f421b86969.tar
nixlib-b442f8ea9f2107a825838a2d260f37f421b86969.tar.gz
nixlib-b442f8ea9f2107a825838a2d260f37f421b86969.tar.bz2
nixlib-b442f8ea9f2107a825838a2d260f37f421b86969.tar.lz
nixlib-b442f8ea9f2107a825838a2d260f37f421b86969.tar.xz
nixlib-b442f8ea9f2107a825838a2d260f37f421b86969.tar.zst
nixlib-b442f8ea9f2107a825838a2d260f37f421b86969.zip
Merge pull request #85566 from kirelagin/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 ];
   };