From d2d20b91c809d71ba6bae2abb604bdd80517d677 Mon Sep 17 00:00:00 2001 From: Jan-Niklas Burfeind Date: Fri, 19 Sep 2025 18:26:22 +0200 Subject: [PATCH] lely-core: init at 2.3.5 --- pkgs/by-name/le/lely-core/package.nix | 37 +++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pkgs/by-name/le/lely-core/package.nix diff --git a/pkgs/by-name/le/lely-core/package.nix b/pkgs/by-name/le/lely-core/package.nix new file mode 100644 index 000000000000..5f2aa132a9dd --- /dev/null +++ b/pkgs/by-name/le/lely-core/package.nix @@ -0,0 +1,37 @@ +{ + autoreconfHook, + fetchFromGitLab, + lib, + stdenv, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "lely-core"; + version = "2.3.5"; + + nativeBuildInputs = [ + autoreconfHook + ]; + + src = fetchFromGitLab { + owner = "lely_industries"; + repo = "lely-core"; + tag = "v${finalAttrs.version}"; + hash = "sha256-PuNE/lKsNNd4KDEcSsaz+IfP2hgT5M5VgLY1kVy1KCc="; + }; + + outputs = [ + "out" + "dev" + "lib" + ]; + + meta = { + description = "High Performance I/O and sensor/actuator control for robotics and IoT applications"; + homepage = "https://opensource.lely.com/canopen/"; + changelog = "https://opensource.lely.com/canopen/release/v${finalAttrs.version}/"; + license = lib.licenses.asl20; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ aiyion ]; + }; +})