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

This commit is contained in:
Arnout Engelen
2025-07-20 15:41:33 +02:00
committed by GitHub
2 changed files with 16 additions and 0 deletions
+8
View File
@@ -46,4 +46,12 @@ stdenv.mkDerivation rec {
"CUPS_DATADIR=$(out)/share/cups"
"CUPS_SERVERROOT=$(out)/etc/cups"
];
meta = {
description = "Daemon for browsing the Bonjour broadcasts of shared, remote CUPS printers";
homepage = "https://github.com/OpenPrinting/cups-browsed";
license = lib.licenses.asl20;
mainProgram = "cups-browsed";
platforms = lib.platforms.linux;
};
}
+8
View File
@@ -3,6 +3,7 @@
cups,
fetchFromGitHub,
ghostscript,
lib,
libcupsfilters,
libz,
mupdf,
@@ -46,4 +47,11 @@ stdenv.mkDerivation rec {
"CUPS_DATADIR=$(out)/share/cups"
"CUPS_SERVERROOT=$(out)/etc/cups"
];
meta = {
description = "Library designed to support legacy printer drivers by handling PostScript Printer Description (PPD) file";
homepage = "https://github.com/OpenPrinting/libppd";
license = lib.licenses.asl20;
platforms = lib.platforms.linux;
};
}