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
passthru.wiringPiD
79
passthru.gpio
80
];
81
-
meta = with lib; {
82
description = "Gordon's Arduino wiring-like WiringPi Library for the Raspberry Pi (Unofficial Mirror for WiringPi bindings)";
83
homepage = "https://github.com/WiringPi/WiringPi";
84
-
license = licenses.lgpl3Plus;
85
-
maintainers = with maintainers; [ doronbehar ];
86
-
platforms = platforms.linux;
0
0
0
87
};
88
}
···
78
passthru.wiringPiD
79
passthru.gpio
80
];
81
+
meta = {
82
description = "Gordon's Arduino wiring-like WiringPi Library for the Raspberry Pi (Unofficial Mirror for WiringPi bindings)";
83
homepage = "https://github.com/WiringPi/WiringPi";
84
+
license = lib.licenses.lgpl3Plus;
85
+
maintainers = with lib.maintainers; [
86
+
doronbehar
87
+
ryand56
88
+
];
89
+
platforms = lib.platforms.linux;
90
};
91
}