Merge pull request #138466 from samuelgrf/mainProgram-multiple-II

Add meta.mainProgram to multiple packages
This commit is contained in:
figsoda 2021-09-19 11:59:16 -04:00 committed by GitHub
commit 8212bd0ed1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View file

@ -196,6 +196,7 @@ let
license = licenses.cddl;
platforms = platforms.linux;
maintainers = with maintainers; [ hmenke jcumming jonringer wizeman fpletz globin mic92 ];
mainProgram = "zfs";
# If your Linux kernel version is not yet supported by zfs, try zfsUnstable.
# On NixOS set the option boot.zfs.enableUnstable.
broken = buildKernel && (kernelCompatible != null) && !kernelCompatible;

View file

@ -123,5 +123,6 @@ stdenv.mkDerivation rec {
license = licenses.bsd2;
platforms = platforms.unix ++ platforms.windows;
maintainers = with maintainers; [ eelco aneeshusa ];
mainProgram = "ssh";
} // extraMeta;
}

View file

@ -60,6 +60,7 @@ stdenv.mkDerivation {
maintainers = [ maintainers.eelco ];
platforms = platforms.all;
mainProgram = "grep";
};
passthru = {inherit pcre;};