3
0
Fork 0
forked from mirrors/nixpkgs

pass-secret-service: Add meta.mainProgram

While this package had its name updated to reflect nix package naming
style, the binary's name is still `pass_secret_service`. Set the
`meta.mainProgram` attribute to allow for use of `lib.getExe`.
This commit is contained in:
David Houston 2023-01-21 14:53:40 -05:00
parent 84f5f37d7b
commit 7e30680825
No known key found for this signature in database
GPG key ID: 5960278CE235F821

View file

@ -71,6 +71,7 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/mdellweg/pass_secret_service/";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.all;
mainProgram = "pass_secret_service";
maintainers = with lib.maintainers; [ jluttine aidalgol ];
};
}