mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
38 lines
895 B
Nix
38 lines
895 B
Nix
{ autoreconfHook
|
|
, lib
|
|
, pkg-config
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, gitUpdater
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "ethercat";
|
|
version = "1.6.1";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "etherlab.org";
|
|
repo = "ethercat";
|
|
rev = "refs/tags/${finalAttrs.version}";
|
|
hash = "sha256-fvuyADZzH1lHo1TkGd9s3n2n8y9vsGgs/ZOakIw48WI=";
|
|
};
|
|
|
|
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" ];
|
|
};
|
|
})
|