Add meta attribute set to cups-browsed and libppd (#426720)

authored by Arnout Engelen and committed by GitHub 154c231a 27ebcee1

+16
+8
pkgs/by-name/cu/cups-browsed/package.nix
··· 46 "CUPS_DATADIR=$(out)/share/cups" 47 "CUPS_SERVERROOT=$(out)/etc/cups" 48 ]; 49 }
··· 46 "CUPS_DATADIR=$(out)/share/cups" 47 "CUPS_SERVERROOT=$(out)/etc/cups" 48 ]; 49 + 50 + meta = { 51 + description = "Daemon for browsing the Bonjour broadcasts of shared, remote CUPS printers"; 52 + homepage = "https://github.com/OpenPrinting/cups-browsed"; 53 + license = lib.licenses.asl20; 54 + mainProgram = "cups-browsed"; 55 + platforms = lib.platforms.linux; 56 + }; 57 }
+8
pkgs/by-name/li/libppd/package.nix
··· 3 cups, 4 fetchFromGitHub, 5 ghostscript, 6 libcupsfilters, 7 libz, 8 mupdf, ··· 46 "CUPS_DATADIR=$(out)/share/cups" 47 "CUPS_SERVERROOT=$(out)/etc/cups" 48 ]; 49 }
··· 3 cups, 4 fetchFromGitHub, 5 ghostscript, 6 + lib, 7 libcupsfilters, 8 libz, 9 mupdf, ··· 47 "CUPS_DATADIR=$(out)/share/cups" 48 "CUPS_SERVERROOT=$(out)/etc/cups" 49 ]; 50 + 51 + meta = { 52 + description = "Library designed to support legacy printer drivers by handling PostScript Printer Description (PPD) file"; 53 + homepage = "https://github.com/OpenPrinting/libppd"; 54 + license = lib.licenses.asl20; 55 + platforms = lib.platforms.linux; 56 + }; 57 }