Skip to content

Commit b1af50f

Browse files
authored
Merge of #53
2 parents 9db690d + b31ee95 commit b1af50f

2 files changed

Lines changed: 15 additions & 10 deletions

File tree

pkgs/mc-rtc-imgui/default.nix

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ stdenv.mkDerivation (_finalAttrs: {
1515

1616
dontBuild = true;
1717

18-
src =
19-
# head of nix branch (for stanalone install)
20-
fetchFromGitHub {
21-
owner = "mc-rtc";
22-
repo = "mc_rtc-imgui";
23-
rev = "3e6c1617a5e622795019b2bccd2ba259df18026f";
24-
hash = "sha256-KmcF5e0O2bQheTArjxaDeBQlxf3cywaFtNlxleHYsL8=";
25-
};
18+
# head of nix branch (for stanalone install)
19+
# https://github.com/mc-rtc/mc_rtc-imgui/tree/nix
20+
src = fetchFromGitHub {
21+
owner = "mc-rtc";
22+
repo = "mc_rtc-imgui";
23+
rev = "6ac125c00ca5e18c7da80e0049dc5697f4f36a23";
24+
hash = "sha256-J9uQpfn08Yv5ROxQmxHYwiVRdvZsVOp2klZmgnw90Bg=";
25+
};
2626

2727
nativeBuildInputs = [
2828
cmake

pkgs/mc-rtc/mc-mujoco/default.nix

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
mc-mujoco-robots,
77
cmake,
88
jrl-cmakemodules,
9+
cli11,
910
mc-rtc,
1011
mujoco,
1112
pugixml,
@@ -29,13 +30,17 @@ stdenv.mkDerivation (_finalAttrs: {
2930

3031
dontBuild = true;
3132

33+
# stanalone mc_mujoco version from
34+
# https://github.com/rohanpsingh/mc_mujoco/pull/98
35+
# we cannot merge as the standalone version cannot be easily set-up outside of Nix
3236
src = fetchFromGitHub {
3337
owner = "arntanguy";
3438
repo = "mc_mujoco";
35-
tag = "1d17567c2264b32aceb3c77841765c0409a1e97";
36-
hash = "sha256-h1TPFQ4qxrAk3bKdY7evZq8sRld8lIJHQKogLOiSF8I=";
39+
rev = "8ca3efe89478c96abf74bd30675ccdc424bcf178";
40+
hash = "sha256-GDJKEOyRjPF5eTpXA7x82K86fjLyx3N3eTt2ZSmcYv4=";
3741
};
3842

43+
buildInputs = [ cli11 ];
3944
nativeBuildInputs = [
4045
cmake
4146
jrl-cmakemodules

0 commit comments

Comments
 (0)