2021-01-24 03:40:18 +03:00
|
|
|
{ lib, stdenv, pkg-config, curl, darwin, libiconv, libgit2, libssh2,
|
2019-05-22 14:03:39 +03:00
|
|
|
openssl, sqlite, zlib, dbus, dbus-glib, gdk-pixbuf, cairo, python3,
|
2021-01-08 18:20:23 +03:00
|
|
|
libsodium, postgresql, gmp, foundationdb, capnproto, nettle, clang,
|
2021-08-15 09:55:20 +03:00
|
|
|
llvmPackages, linux-pam, ... }:
|
2017-12-12 13:55:15 +03:00
|
|
|
|
2018-01-17 18:01:04 +03:00
|
|
|
let
|
2018-05-17 19:09:33 +03:00
|
|
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
2018-01-17 18:01:04 +03:00
|
|
|
in
|
2017-12-12 13:55:15 +03:00
|
|
|
{
|
2018-10-29 00:55:26 +03:00
|
|
|
cairo-rs = attrs: {
|
|
|
|
buildInputs = [ cairo ];
|
|
|
|
};
|
|
|
|
|
2021-01-08 18:20:23 +03:00
|
|
|
capnp-rpc = attrs: {
|
|
|
|
nativeBuildInputs = [ capnproto ];
|
|
|
|
};
|
|
|
|
|
2018-01-17 18:01:04 +03:00
|
|
|
cargo = attrs: {
|
|
|
|
buildInputs = [ openssl zlib curl ]
|
2021-01-24 03:40:18 +03:00
|
|
|
++ lib.optionals stdenv.isDarwin [ CoreFoundation Security libiconv ];
|
2018-01-17 18:01:04 +03:00
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
2019-04-18 12:37:47 +03:00
|
|
|
libz-sys = attrs: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ zlib ];
|
2019-04-18 12:37:47 +03:00
|
|
|
extraLinkFlags = ["-L${zlib.out}/lib"];
|
2018-01-17 18:01:04 +03:00
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
2018-01-17 18:01:04 +03:00
|
|
|
curl-sys = attrs: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ zlib curl ];
|
2018-05-20 13:28:35 +03:00
|
|
|
propagatedBuildInputs = [ curl zlib ];
|
|
|
|
extraLinkFlags = ["-L${zlib.out}/lib"];
|
2018-01-17 18:01:04 +03:00
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
|
|
|
dbus = attrs: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ dbus ];
|
2018-10-29 00:55:26 +03:00
|
|
|
};
|
|
|
|
|
2018-11-18 04:27:45 +03: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-29 00:55:26 +03: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 14:03:39 +03:00
|
|
|
buildInputs = [ gdk-pixbuf ];
|
2018-10-29 00:55:26 +03:00
|
|
|
};
|
|
|
|
|
2018-01-17 18:01:04 +03:00
|
|
|
libgit2-sys = attrs: {
|
|
|
|
LIBGIT2_SYS_USE_PKG_CONFIG = true;
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ openssl zlib libgit2 ];
|
2018-01-17 18:01:04 +03:00
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
2017-12-12 13:55:15 +03:00
|
|
|
libsqlite3-sys = attrs: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ sqlite ];
|
2017-12-12 13:55:15 +03:00
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
2018-01-17 18:01:04 +03:00
|
|
|
libssh2-sys = attrs: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ openssl zlib libssh2 ];
|
2018-01-17 18:01:04 +03:00
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
|
|
|
libdbus-sys = attrs: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ dbus ];
|
2018-10-29 00:55:26 +03:00
|
|
|
};
|
|
|
|
|
2021-01-08 18:20:23 +03: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 11:23:57 +03:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2021-01-08 18:20:23 +03:00
|
|
|
};
|
|
|
|
|
2018-01-17 18:01:04 +03:00
|
|
|
openssl = attrs: {
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
2017-12-12 13:55:15 +03:00
|
|
|
openssl-sys = attrs: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ openssl ];
|
2017-12-12 13:55:15 +03:00
|
|
|
};
|
2018-01-24 17:28:36 +03:00
|
|
|
|
2021-08-15 09:55:20 +03:00
|
|
|
pam-sys = attr: {
|
|
|
|
buildInputs = [ linux-pam ];
|
|
|
|
};
|
|
|
|
|
2018-10-29 00:55:26 +03:00
|
|
|
pq-sys = attr: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ postgresql ];
|
2018-02-04 05:17:53 +03:00
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
2018-08-15 08:19:20 +03:00
|
|
|
rink = attrs: {
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
crateBin = [ { name = "rink"; path = "src/bin/rink.rs"; } ];
|
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
|
|
|
security-framework-sys = attr: {
|
|
|
|
propagatedBuildInputs = [ Security ];
|
2018-02-04 05:17:53 +03:00
|
|
|
};
|
2018-01-24 17:28:36 +03:00
|
|
|
|
2021-01-08 18:20:23 +03: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-29 00:56:30 +03:00
|
|
|
serde_derive = attrs: {
|
2021-01-24 03:40:18 +03:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
2018-10-29 00:56:30 +03:00
|
|
|
};
|
|
|
|
|
2018-01-24 17:28:36 +03:00
|
|
|
thrussh-libsodium = attrs: {
|
2021-01-08 19:26:05 +03:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-09-28 01:52:56 +03:00
|
|
|
buildInputs = [ libsodium ];
|
2018-01-24 17:28:36 +03:00
|
|
|
};
|
2018-10-29 00:55:26 +03:00
|
|
|
|
|
|
|
xcb = attrs: {
|
|
|
|
buildInputs = [ python3 ];
|
2018-05-17 19:09:33 +03:00
|
|
|
};
|
2017-12-12 13:55:15 +03:00
|
|
|
}
|