From 863df88d1cd676e930eaf06a40c179d861568d8d Mon Sep 17 00:00:00 2001 From: nat Date: Sat, 22 Jun 2024 10:03:00 +0200 Subject: [PATCH] beekeeper-studio: avoid with lib; add sourceProvenance --- pkgs/by-name/be/beekeeper-studio/package.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/be/beekeeper-studio/package.nix b/pkgs/by-name/be/beekeeper-studio/package.nix index 04c10a6a51e1..e8637a0e3a5a 100644 --- a/pkgs/by-name/be/beekeeper-studio/package.nix +++ b/pkgs/by-name/be/beekeeper-studio/package.nix @@ -39,13 +39,14 @@ appimageTools.wrapType2 { --replace-fail 'Exec=AppRun --no-sandbox' 'Exec=${pname}' ''; - meta = with lib; { + meta = { description = "Modern and easy to use SQL client for MySQL, Postgres, SQLite, SQL Server, and more. Linux, MacOS, and Windows"; homepage = "https://www.beekeeperstudio.io"; changelog = "https://github.com/beekeeper-studio/beekeeper-studio/releases/tag/v${version}"; - license = licenses.gpl3Only; + license = lib.licenses.gpl3Only; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "beekeeper-studio"; - maintainers = with maintainers; [ milogert alexnortung ]; + maintainers = with lib.maintainers; [ milogert alexnortung ]; platforms = [ "aarch64-linux" "x86_64-linux" ]; }; }