-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathflake.nix
72 lines (58 loc) · 1.82 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
description = "C++ wrapper for ACADOS.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
acados-overlay.url = "github:adrian-kriegel/acados-nix";
};
outputs = { self, nixpkgs, acados-overlay }:
let
pkgs = import nixpkgs {
system = "x86_64-linux";
overlays = [ acados-overlay.overlays.default ];
};
in {
packages.x86_64-linux.acados-cpp = pkgs.stdenv.mkDerivation rec {
pname = "acados-cpp";
version = "0.1.0";
src = ./.;
# Intentionally not adding ACADOS as a dependency. ACADOSCpp is header-only
# so nothing links to ACADOS and no build step is required.
# Users can just use their own ACADOS installation.
buildInputs = [];
nativeBuildInputs = [];
installPhase = ''
mkdir -p $out/include
cp -r ${src}/include/* $out/include
mkdir -p $out/cmake
cp ${src}/cmake/* $out/cmake
'';
meta = with pkgs.lib; {
description = "C++ wrapper for ACADOS.";
homepage = "https://github.com/adrian-kriegel/ACADOSCpp";
license = licenses.mit;
maintainers = [ maintainers.adrian-kriegel ];
};
};
overlays.default = final: prev: {
acados-cpp = self.packages.${prev.system}.acados-cpp;
};
devShells.x86_64-linux.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
gcc
cmake
];
buildInputs = with pkgs; [
acados
(pkgs.python312.withPackages (ps: with ps; [
numpy
acados_template
]))
gtest
];
shellHook = with pkgs; ''
export ACADOS_DIR=${acados}
export CPLUS_INCLUDE_PATH=$CMAKE_INCLUDE_PATH:$(pwd)/include
'';
};
};
}