2021-09-02 05:35:23 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, pkg-config
|
|
|
|
, curl
|
|
|
|
, darwin
|
|
|
|
, libgit2
|
|
|
|
, libssh2
|
|
|
|
, openssl
|
|
|
|
, sqlite
|
|
|
|
, zlib
|
|
|
|
, dbus
|
|
|
|
, dbus-glib
|
|
|
|
, gdk-pixbuf
|
|
|
|
, cairo
|
|
|
|
, python3
|
|
|
|
, libsodium
|
|
|
|
, postgresql
|
|
|
|
, gmp
|
|
|
|
, foundationdb
|
|
|
|
, capnproto
|
|
|
|
, nettle
|
|
|
|
, clang
|
|
|
|
, llvmPackages
|
|
|
|
, linux-pam
|
2021-09-21 16:07:25 +00:00
|
|
|
, rdkafka
|
2021-09-02 05:35:23 +00:00
|
|
|
, ...
|
|
|
|
}:
|
2017-12-12 10:55:15 +00:00
|
|
|
|
2018-01-17 15:01:04 +00:00
|
|
|
let
|
2018-05-17 16:09:33 +00:00
|
|
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
2018-01-17 15:01:04 +00:00
|
|
|
in
|
2017-12-12 10:55:15 +00:00
|
|
|
{
|
2018-10-28 21:55:26 +00:00
|
|
|
cairo-rs = attrs: {
|
|
|
|
buildInputs = [ cairo ];
|
|
|
|
};
|
|
|
|
|
2021-01-08 15:20:23 +00:00
|
|
|
capnp-rpc = attrs: {
|
|
|
|
nativeBuildInputs = [ capnproto ];
|
|
|
|
};
|
|
|
|
|
2018-01-17 15:01:04 +00:00
|
|
|
cargo = attrs: {
|
|
|
|
buildInputs = [ openssl zlib curl ]
|
2021-09-03 03:38:43 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
|
2018-01-17 15:01:04 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
2019-04-18 09:37:47 +00:00
|
|
|
libz-sys = attrs: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ zlib ];
|
2021-09-02 05:35:23 +00:00
|
|
|
extraLinkFlags = [ "-L${zlib.out}/lib" ];
|
2018-01-17 15:01:04 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
2018-01-17 15:01:04 +00:00
|
|
|
curl-sys = attrs: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ zlib curl ];
|
2018-05-20 10:28:35 +00:00
|
|
|
propagatedBuildInputs = [ curl zlib ];
|
2021-09-02 05:35:23 +00:00
|
|
|
extraLinkFlags = [ "-L${zlib.out}/lib" ];
|
2018-01-17 15:01:04 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
|
|
|
dbus = attrs: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ dbus ];
|
2018-10-28 21:55:26 +00:00
|
|
|
};
|
|
|
|
|
2018-11-18 01:27:45 +00:00
|
|
|
foundationdb-sys = attrs: {
|
|
|
|
buildInputs = [ foundationdb ];
|
|
|
|
# needed for 0.4+ release, when the FFI bindings are auto-generated
|
|
|
|
#
|
|
|
|
# patchPhase = ''
|
|
|
|
# substituteInPlace ./foundationdb-sys/build.rs \
|
|
|
|
# --replace /usr/local/include ${foundationdb.dev}/include
|
|
|
|
# '';
|
|
|
|
};
|
|
|
|
|
|
|
|
foundationdb = attrs: {
|
|
|
|
buildInputs = [ foundationdb ];
|
|
|
|
};
|
|
|
|
|
2018-10-28 21:55:26 +00:00
|
|
|
gobject-sys = attrs: {
|
|
|
|
buildInputs = [ dbus-glib ];
|
|
|
|
};
|
|
|
|
|
|
|
|
gio-sys = attrs: {
|
|
|
|
buildInputs = [ dbus-glib ];
|
|
|
|
};
|
|
|
|
|
|
|
|
gdk-pixbuf-sys = attrs: {
|
|
|
|
buildInputs = [ dbus-glib ];
|
|
|
|
};
|
|
|
|
|
|
|
|
gdk-pixbuf = attrs: {
|
2019-05-22 11:03:39 +00:00
|
|
|
buildInputs = [ gdk-pixbuf ];
|
2018-10-28 21:55:26 +00:00
|
|
|
};
|
|
|
|
|
2018-01-17 15:01:04 +00:00
|
|
|
libgit2-sys = attrs: {
|
|
|
|
LIBGIT2_SYS_USE_PKG_CONFIG = true;
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ openssl zlib libgit2 ];
|
2018-01-17 15:01:04 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
2017-12-12 10:55:15 +00:00
|
|
|
libsqlite3-sys = attrs: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ sqlite ];
|
2017-12-12 10:55:15 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
2018-01-17 15:01:04 +00:00
|
|
|
libssh2-sys = attrs: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ openssl zlib libssh2 ];
|
2018-01-17 15:01:04 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
|
|
|
libdbus-sys = attrs: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ dbus ];
|
2018-10-28 21:55:26 +00:00
|
|
|
};
|
|
|
|
|
2021-01-08 15:20:23 +00:00
|
|
|
nettle-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ nettle clang ];
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 08:23:57 +00:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2021-01-08 15:20:23 +00:00
|
|
|
};
|
|
|
|
|
2018-01-17 15:01:04 +00:00
|
|
|
openssl = attrs: {
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
2017-12-12 10:55:15 +00:00
|
|
|
openssl-sys = attrs: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ openssl ];
|
2017-12-12 10:55:15 +00:00
|
|
|
};
|
2018-01-24 14:28:36 +00:00
|
|
|
|
2021-08-15 06:55:20 +00:00
|
|
|
pam-sys = attr: {
|
|
|
|
buildInputs = [ linux-pam ];
|
|
|
|
};
|
|
|
|
|
2018-10-28 21:55:26 +00:00
|
|
|
pq-sys = attr: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ postgresql ];
|
2018-02-04 02:17:53 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
2021-09-21 16:07:25 +00:00
|
|
|
rdkafka-sys = attr: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ rdkafka ];
|
|
|
|
};
|
|
|
|
|
2018-08-15 05:19:20 +00:00
|
|
|
rink = attrs: {
|
|
|
|
buildInputs = [ gmp ];
|
2021-09-02 05:35:23 +00:00
|
|
|
crateBin = [{ name = "rink"; path = "src/bin/rink.rs"; }];
|
2018-08-15 05:19:20 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
|
|
|
security-framework-sys = attr: {
|
|
|
|
propagatedBuildInputs = [ Security ];
|
2018-02-04 02:17:53 +00:00
|
|
|
};
|
2018-01-24 14:28:36 +00:00
|
|
|
|
2021-01-08 15:20:23 +00:00
|
|
|
sequoia-openpgp = attrs: {
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
sequoia-openpgp-ffi = attrs: {
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
sequoia-ipc = attrs: {
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
sequoia-guide = attrs: {
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
sequoia-store = attrs: {
|
|
|
|
nativeBuildInputs = [ capnproto ];
|
|
|
|
buildInputs = [ sqlite gmp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
sequoia-sq = attrs: {
|
|
|
|
buildInputs = [ sqlite gmp ];
|
|
|
|
};
|
|
|
|
|
|
|
|
sequoia-tool = attrs: {
|
|
|
|
nativeBuildInputs = [ capnproto ];
|
|
|
|
buildInputs = [ sqlite gmp ];
|
|
|
|
};
|
|
|
|
|
2018-10-28 21:56:30 +00:00
|
|
|
serde_derive = attrs: {
|
2021-01-24 00:40:18 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
2018-10-28 21:56:30 +00:00
|
|
|
};
|
|
|
|
|
2018-01-24 14:28:36 +00:00
|
|
|
thrussh-libsodium = attrs: {
|
2021-01-08 16:26:05 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-27 22:52:56 +00:00
|
|
|
buildInputs = [ libsodium ];
|
2018-01-24 14:28:36 +00:00
|
|
|
};
|
2018-10-28 21:55:26 +00:00
|
|
|
|
|
|
|
xcb = attrs: {
|
|
|
|
buildInputs = [ python3 ];
|
2018-05-17 16:09:33 +00:00
|
|
|
};
|
2017-12-12 10:55:15 +00:00
|
|
|
}
|