fasd: set meta.mainProgram

This commit is contained in:
figsoda 2021-10-08 15:27:04 -04:00
parent 91c2bef35c
commit 1d4d39f0bc

View file

@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
PREFIX=$out make install PREFIX=$out make install
''; '';
meta = { meta = with lib; {
homepage = "https://github.com/clvv/${pname}"; homepage = "https://github.com/clvv/fasd";
description = "Quick command-line access to files and directories for POSIX shells"; description = "Quick command-line access to files and directories for POSIX shells";
license = lib.licenses.mit; license = licenses.mit;
longDescription = '' longDescription = ''
Fasd is a command-line productivity booster. Fasd is a command-line productivity booster.
@ -28,6 +28,8 @@ stdenv.mkDerivation rec {
command line. command line.
''; '';
platforms = lib.platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ ];
mainProgram = "fasd";
}; };
} }