albert: remove with lib; in meta

This commit is contained in:
eljamm 2024-08-02 09:26:59 +01:00
parent b663d72f08
commit 2d06eed03c
No known key found for this signature in database
GPG Key ID: 7630FDF7C8FB1F3F

View File

@ -74,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: {
updateScript = nix-update-script { };
};
meta = with lib; {
meta = {
description = "Fast and flexible keyboard launcher";
longDescription = ''
Albert is a desktop agnostic launcher. Its goals are usability and beauty,
@ -84,13 +84,13 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://albertlauncher.github.io";
changelog = "https://github.com/albertlauncher/albert/blob/${finalAttrs.src.rev}/CHANGELOG.md";
# See: https://github.com/NixOS/nixpkgs/issues/279226
license = licenses.unfree;
maintainers = with maintainers; [
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [
ericsagnes
synthetica
eljamm
];
mainProgram = "albert";
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
})