nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

duckdb: fix 'with lib;'

+4 -4
+4 -4
pkgs/by-name/du/duckdb/package.nix
··· 136 136 137 137 passthru.updateScript = ./update.sh; 138 138 139 - meta = with lib; { 139 + meta = { 140 140 changelog = "https://github.com/duckdb/duckdb/releases/tag/v${finalAttrs.version}"; 141 141 description = "Embeddable SQL OLAP Database Management System"; 142 142 homepage = "https://duckdb.org/"; 143 - license = licenses.mit; 143 + license = lib.licenses.mit; 144 144 mainProgram = "duckdb"; 145 - maintainers = with maintainers; [ 145 + maintainers = with lib.maintainers; [ 146 146 costrouc 147 147 cpcloud 148 148 ]; 149 - platforms = platforms.all; 149 + platforms = lib.platforms.all; 150 150 }; 151 151 })