mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
40 lines
903 B
Nix
40 lines
903 B
Nix
{ autoreconfHook
|
|
, cmake
|
|
, lib
|
|
, pkg-config
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, gitUpdater
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ethercat";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "etherlab.org";
|
|
repo = "ethercat";
|
|
rev = "refs/tags/${finalAttrs.version}";
|
|
hash = "sha256-w1aoznLjCHh+dN2fyfpKpzq68B4D/rert2XFpTxk/F4=";
|
|
};
|
|
|
|
separateDebugInfo = true;
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
configureFlags = [
|
|
"--enable-userlib=yes"
|
|
"--enable-kernel=no"
|
|
];
|
|
|
|
passthru.updateScript = gitUpdater { };
|
|
|
|
meta = with lib; {
|
|
description = "IgH EtherCAT Master for Linux";
|
|
homepage = "https://etherlab.org/ethercat";
|
|
changelog = "https://gitlab.com/etherlab.org/ethercat/-/blob/${finalAttrs.version}/NEWS";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ stv0g ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
})
|