Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
816 B
Nix
38 lines
816 B
Nix
{
|
|
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 ];
|
|
};
|
|
})
|