summary refs log tree commit diff
path: root/pkgs/applications/networking/ftp
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2021-11-03 18:27:38 +0800
committerBobby Rong <rjl931189261@126.com>2021-11-03 19:07:21 +0800
commit2483e778d48fd72a1905d80527b67f217b3f3f7c (patch)
treee8fe0be60e1365a7924b63684ad6b684964b108e /pkgs/applications/networking/ftp
parent4789953e5c1ef6d10e3ff437e5b7ab8eed526942 (diff)
downloadnixpkgs-2483e778d48fd72a1905d80527b67f217b3f3f7c.tar
nixpkgs-2483e778d48fd72a1905d80527b67f217b3f3f7c.tar.gz
nixpkgs-2483e778d48fd72a1905d80527b67f217b3f3f7c.tar.bz2
nixpkgs-2483e778d48fd72a1905d80527b67f217b3f3f7c.tar.lz
nixpkgs-2483e778d48fd72a1905d80527b67f217b3f3f7c.tar.xz
nixpkgs-2483e778d48fd72a1905d80527b67f217b3f3f7c.tar.zst
nixpkgs-2483e778d48fd72a1905d80527b67f217b3f3f7c.zip
treewide: set meta.mainProgram for packages teams.pantheon.members maintain
Diffstat (limited to 'pkgs/applications/networking/ftp')
-rw-r--r--pkgs/applications/networking/ftp/taxi/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/networking/ftp/taxi/default.nix b/pkgs/applications/networking/ftp/taxi/default.nix
index c6015a66963..411031f605e 100644
--- a/pkgs/applications/networking/ftp/taxi/default.nix
+++ b/pkgs/applications/networking/ftp/taxi/default.nix
@@ -52,15 +52,16 @@ stdenv.mkDerivation rec {
     patchShebangs meson/post_install.py
   '';
 
+  passthru.updateScript = nix-update-script {
+    attrPath = pname;
+  };
+
   meta = with lib; {
     homepage = "https://github.com/Alecaddd/taxi";
     description = "The FTP Client that drives you anywhere";
     license = licenses.lgpl3Plus;
     maintainers = with maintainers; [ AndersonTorres ] ++ teams.pantheon.members;
     platforms = platforms.linux;
-  };
-
-  passthru.updateScript = nix-update-script {
-    attrPath = pname;
+    mainProgram = "com.github.alecaddd.taxi";
   };
 }