Files
linuxcnc-nix/packages/linuxcnc-ethercat/default.nix
2023-09-27 18:09:55 +03:00

26 lines
560 B
Nix

{ config, lib, pkgs, stdenv, linuxcnc, fetchGit }:
stdenv.mkDerivation rec {
enableParalellBuilding = true;
pname = "linuxcnc-ethercat";
version = "5ad53da25b";
name = "${pname}-${version}";
src = fetchGit {
url = "https://git.dripco.eu/nic/linuxcnc-ethercat.git";
ref = "master";
rev = "5ad53da25bdb5633e39ae1b9b8bfa9e5acb10674";
#ref = "refs/tags/1.9";
#sha256 = lib.fakeSha256;
};
buildInputs = [ linuxcnc ];
meta = with lib; {
description = "LinuxCNC ethercat interop";
platforms = platforms.linux;
};
}