tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
wiringpi: remove `with lib`, add ryand56 as maintainer
Ryan Omasta
7 months ago
8976f8ad
a6e88390
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
wi
wiringpi
package.nix
+7
-4
pkgs/by-name/wi/wiringpi/package.nix
···
78
78
passthru.wiringPiD
79
79
passthru.gpio
80
80
];
81
81
-
meta = with lib; {
81
81
+
meta = {
82
82
description = "Gordon's Arduino wiring-like WiringPi Library for the Raspberry Pi (Unofficial Mirror for WiringPi bindings)";
83
83
homepage = "https://github.com/WiringPi/WiringPi";
84
84
-
license = licenses.lgpl3Plus;
85
85
-
maintainers = with maintainers; [ doronbehar ];
86
86
-
platforms = platforms.linux;
84
84
+
license = lib.licenses.lgpl3Plus;
85
85
+
maintainers = with lib.maintainers; [
86
86
+
doronbehar
87
87
+
ryand56
88
88
+
];
89
89
+
platforms = lib.platforms.linux;
87
90
};
88
91
}