Merge #70576: scylladb: fix build under sandboxing
This commit is contained in:
commit
3596c4c53c
28
pkgs/servers/scylladb/configure-etc-osrelease.patch
Normal file
28
pkgs/servers/scylladb/configure-etc-osrelease.patch
Normal file
@ -0,0 +1,28 @@
|
||||
diff --git a/configure.py b/configure.py
|
||||
index 25ca951ac..454140420 100755
|
||||
--- a/configure.py
|
||||
+++ b/configure.py
|
||||
@@ -36,13 +36,16 @@ tempfile.tempdir = "./build/tmp"
|
||||
|
||||
configure_args = str.join(' ', [shlex.quote(x) for x in sys.argv[1:]])
|
||||
|
||||
-for line in open('/etc/os-release'):
|
||||
- key, _, value = line.partition('=')
|
||||
- value = value.strip().strip('"')
|
||||
- if key == 'ID':
|
||||
- os_ids = [value]
|
||||
- if key == 'ID_LIKE':
|
||||
- os_ids += value.split(' ')
|
||||
+try:
|
||||
+ for line in open('/etc/os-release'):
|
||||
+ key, _, value = line.partition('=')
|
||||
+ value = value.strip().strip('"')
|
||||
+ if key == 'ID':
|
||||
+ os_ids = [value]
|
||||
+ if key == 'ID_LIKE':
|
||||
+ os_ids += value.split(' ')
|
||||
+except FileNotFoundError:
|
||||
+ os_ids = ["linux"]
|
||||
|
||||
|
||||
# distribution "internationalization", converting package names.
|
@ -41,7 +41,7 @@ gcc8Stdenv.mkDerivation {
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
patches = [ ./seastar-configure-script-paths.patch ];
|
||||
patches = [ ./seastar-configure-script-paths.patch ./configure-etc-osrelease.patch ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
@ -77,21 +77,24 @@ gcc8Stdenv.mkDerivation {
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs ./configure.py
|
||||
patchShebangs seastar/json/json2code.py
|
||||
'';
|
||||
|
||||
configurePhase = ''
|
||||
./configure.py --mode=release
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir $out
|
||||
cp -r * $out/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "NoSQL data store using the seastar framework, compatible with Apache Cassandra";
|
||||
homepage = "https://scylladb.com";
|
||||
license = licenses.agpl3;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.farlion ];
|
||||
broken = true;
|
||||
requiredSystemFeatures = [ "big-parallel" ];
|
||||
};
|
||||
}
|
||||
|
@ -24498,8 +24498,8 @@ in
|
||||
sct = callPackage ../tools/X11/sct {};
|
||||
|
||||
scylladb = callPackage ../servers/scylladb {
|
||||
thrift = thrift-0_10;
|
||||
};
|
||||
thrift = thrift-0_10;
|
||||
};
|
||||
|
||||
seafile-shared = callPackage ../misc/seafile-shared { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user