samsung-unified-linux-driver (all): resolve with lib; in meta

https://github.com/NixOS/nixpkgs/issues/371862
This commit is contained in:
Yarny0
2025-03-10 15:46:00 +01:00
parent 3948577e2a
commit fea4433fb5
3 changed files with 13 additions and 13 deletions
@@ -112,16 +112,16 @@ stdenv.mkDerivation (finalAttrs: {
# we did this in prefixup already
dontPatchELF = true;
meta = with lib; {
meta = {
description = "Unified Linux Driver for Samsung printers and scanners";
homepage = "http://www.bchemnet.com/suldr";
downloadPage = "http://www.bchemnet.com/suldr/driver/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
# Tested on linux-x86_64. Might work on linux-i386.
# Probably won't work on anything else.
platforms = platforms.linux;
platforms = lib.platforms.linux;
maintainers = [ ];
};
})
+4 -4
View File
@@ -94,15 +94,15 @@ stdenv.mkDerivation (finalAttrs: {
# we did this in prefixup already
dontPatchELF = true;
meta = with lib; {
meta = {
description = "Unified Linux Driver for Samsung printers and scanners";
homepage = "http://www.bchemnet.com/suldr";
downloadPage = "http://www.bchemnet.com/suldr/driver/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
# Tested on linux-x86_64. Might work on linux-i386.
# Probably won't work on anything else.
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
})
+5 -5
View File
@@ -92,12 +92,12 @@ stdenv.mkDerivation (finalAttrs: {
"rastertospl"
];
meta = with lib; {
meta = {
description = "Samsung's Linux printing drivers; includes binaries without source code";
homepage = "http://www.samsung.com/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ joko ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ joko ];
};
})