best practices: get rid of with pkgs;

This commit is contained in:
2024-11-09 15:33:03 -06:00
parent ebcab67a6a
commit 120d485f28
33 changed files with 418 additions and 317 deletions

View File

@@ -66,11 +66,11 @@ buildNpmPackage (
--add-flags $out/opt/vdhcoapp/src/main.js
'';
meta = with lib; {
meta = {
description = "Companion application for the Video DownloadHelper browser add-on";
homepage = "https://www.downloadhelper.net/";
license = licenses.gpl2;
maintainers = with maintainers; [ wolfangaukang ];
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.wolfangaukang ];
mainProgram = "vdhcoapp";
};
}

View File

@@ -33,12 +33,12 @@ rustPlatform.buildRustPackage (
nativeBuildInputs = [ pkg-config ];
meta = with lib; {
meta = {
description = "File picker used by VDHCoApp";
homepage = "https://github.com/paulrouget/static-filepicker";
license = licenses.gpl2;
license = lib.licenses.gpl2;
mainProgram = "filepicker";
maintainers = with maintainers; [ hannesgith ];
maintainers = [ lib.maintainers.hannesgith ];
};
}
)