tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
xtreemfs: fix substituteInPlace paths
Robin Gloster
9 years ago
b37460ec
6f9d474d
+9
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
filesystems
xtreemfs
default.nix
+9
-5
pkgs/tools/filesystems/xtreemfs/default.nix
···
42
42
substituteInPlace etc/init.d/generate_initd_scripts.sh \
43
43
--replace "/bin/bash" "${stdenv.shell}"
44
44
45
45
+
substituteInPlace cpp/thirdparty/gtest-1.7.0/configure \
46
46
+
--replace "/usr/bin/file" "${file}/bin/file"
47
47
+
48
48
+
substituteInPlace cpp/thirdparty/protobuf-2.5.0/configure \
49
49
+
--replace "/usr/bin/file" "${file}/bin/file"
50
50
+
51
51
+
substituteInPlace cpp/thirdparty/protobuf-2.5.0/gtest/configure \
52
52
+
--replace "/usr/bin/file" "${file}/bin/file"
53
53
+
45
54
# do not put cmake into buildInputs
46
55
export PATH="$PATH:${cmake}/bin"
47
47
-
'';
48
48
-
49
49
-
preBuild = ''
50
50
-
substituteInPlace configure \
51
51
-
--replace "/usr/bin/file" "${file}/bin/file"
52
56
'';
53
57
54
58
doCheck = false;