summary refs log tree commit diff
path: root/pkgs/tools/archivers/gnutar
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2022-05-04 17:46:39 -0700
committerMalo Bourgon <mbourgon@gmail.com>2022-05-04 18:08:19 -0700
commit16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c (patch)
tree70613ead07ec6032ead7b0f068c62ccf7ea688f7 /pkgs/tools/archivers/gnutar
parent5d4bdece1f2d20eb16e5ee8e634134bd41ba02b1 (diff)
downloadnixpkgs-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar
nixpkgs-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.gz
nixpkgs-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.bz2
nixpkgs-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.lz
nixpkgs-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.xz
nixpkgs-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.tar.zst
nixpkgs-16e15fa68f0247d1ccc9bf94e2906097bcaa2d5c.zip
treewide: add meta.mainProgram to many packages
Diffstat (limited to 'pkgs/tools/archivers/gnutar')
-rw-r--r--pkgs/tools/archivers/gnutar/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/archivers/gnutar/default.nix b/pkgs/tools/archivers/gnutar/default.nix
index fcc92e673a5..9be1ea7f4d4 100644
--- a/pkgs/tools/archivers/gnutar/default.nix
+++ b/pkgs/tools/archivers/gnutar/default.nix
@@ -45,9 +45,7 @@ stdenv.mkDerivation rec {
   doInstallCheck = false; # fails
 
   meta = {
-    homepage = "https://www.gnu.org/software/tar/";
     description = "GNU implementation of the `tar' archiver";
-
     longDescription = ''
       The Tar program provides the ability to create tar archives, as
       well as various other kinds of manipulation.  For example, you
@@ -62,10 +60,12 @@ stdenv.mkDerivation rec {
       pipes), it can even access remote devices or files (as
       archives).
     '';
+    homepage = "https://www.gnu.org/software/tar/";
 
     license = lib.licenses.gpl3Plus;
 
     maintainers = [ ];
+    mainProgram = "tar";
     platforms = lib.platforms.all;
 
     priority = 10;