tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lely-core: init at 2.3.5
Jan-Niklas Burfeind
4 months ago
d2d20b91
401ef9fe
+37
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
le
lely-core
package.nix
+37
pkgs/by-name/le/lely-core/package.nix
···
1
1
+
{
2
2
+
autoreconfHook,
3
3
+
fetchFromGitLab,
4
4
+
lib,
5
5
+
stdenv,
6
6
+
}:
7
7
+
8
8
+
stdenv.mkDerivation (finalAttrs: {
9
9
+
pname = "lely-core";
10
10
+
version = "2.3.5";
11
11
+
12
12
+
nativeBuildInputs = [
13
13
+
autoreconfHook
14
14
+
];
15
15
+
16
16
+
src = fetchFromGitLab {
17
17
+
owner = "lely_industries";
18
18
+
repo = "lely-core";
19
19
+
tag = "v${finalAttrs.version}";
20
20
+
hash = "sha256-PuNE/lKsNNd4KDEcSsaz+IfP2hgT5M5VgLY1kVy1KCc=";
21
21
+
};
22
22
+
23
23
+
outputs = [
24
24
+
"out"
25
25
+
"dev"
26
26
+
"lib"
27
27
+
];
28
28
+
29
29
+
meta = {
30
30
+
description = "High Performance I/O and sensor/actuator control for robotics and IoT applications";
31
31
+
homepage = "https://opensource.lely.com/canopen/";
32
32
+
changelog = "https://opensource.lely.com/canopen/release/v${finalAttrs.version}/";
33
33
+
license = lib.licenses.asl20;
34
34
+
platforms = lib.platforms.linux;
35
35
+
maintainers = with lib.maintainers; [ aiyion ];
36
36
+
};
37
37
+
})