Skip to content

Instantly share code, notes, and snippets.

@bobvanderlinden
Last active November 16, 2015 21:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobvanderlinden/0bfb0ec7d4ed89ba0eec to your computer and use it in GitHub Desktop.
Save bobvanderlinden/0bfb0ec7d4ed89ba0eec to your computer and use it in GitHub Desktop.
Nix file for building Machinekit (cmake version)
with import <nixpkgs> { };
#pkgs.clangStdenv.mkDerivation rec {
pkgs.stdenv.mkDerivation rec {
name = "machinekit";
src = ./.;
nativeBuildInputs = [
cmake
pkgconfig
];
buildInputs = [
avahi
boost
clang
cython
czmq
jansson
libuuid
lttng-ust
protobuf
python
readline
zeromq
liburcu
procps
];
enableParallelBuilding = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment