lely-core: init at 2.3.5

+37
+37
pkgs/by-name/le/lely-core/package.nix
··· 1 + { 2 + autoreconfHook, 3 + fetchFromGitLab, 4 + lib, 5 + stdenv, 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "lely-core"; 10 + version = "2.3.5"; 11 + 12 + nativeBuildInputs = [ 13 + autoreconfHook 14 + ]; 15 + 16 + src = fetchFromGitLab { 17 + owner = "lely_industries"; 18 + repo = "lely-core"; 19 + tag = "v${finalAttrs.version}"; 20 + hash = "sha256-PuNE/lKsNNd4KDEcSsaz+IfP2hgT5M5VgLY1kVy1KCc="; 21 + }; 22 + 23 + outputs = [ 24 + "out" 25 + "dev" 26 + "lib" 27 + ]; 28 + 29 + meta = { 30 + description = "High Performance I/O and sensor/actuator control for robotics and IoT applications"; 31 + homepage = "https://opensource.lely.com/canopen/"; 32 + changelog = "https://opensource.lely.com/canopen/release/v${finalAttrs.version}/"; 33 + license = lib.licenses.asl20; 34 + platforms = lib.platforms.linux; 35 + maintainers = with lib.maintainers; [ aiyion ]; 36 + }; 37 + })