2021-09-02 05:35:23 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2024-07-05 18:54:07 +00:00
|
|
|
, alsa-lib
|
2022-09-10 02:51:43 +00:00
|
|
|
, atk
|
2024-07-05 18:54:07 +00:00
|
|
|
, autoconf
|
|
|
|
, automake
|
|
|
|
, cairo
|
|
|
|
, capnproto
|
|
|
|
, clang
|
|
|
|
, cmake
|
2021-09-02 05:35:23 +00:00
|
|
|
, curl
|
|
|
|
, darwin
|
|
|
|
, dbus
|
|
|
|
, dbus-glib
|
2024-07-05 18:54:07 +00:00
|
|
|
, fontconfig
|
|
|
|
, foundationdb
|
|
|
|
, freetype
|
2021-09-02 05:35:23 +00:00
|
|
|
, gdk-pixbuf
|
2024-07-05 18:54:07 +00:00
|
|
|
, glib
|
2021-09-02 05:35:23 +00:00
|
|
|
, gmp
|
2023-01-13 16:43:39 +00:00
|
|
|
, gobject-introspection
|
2024-07-05 18:54:07 +00:00
|
|
|
, graphene
|
|
|
|
, gtk3
|
2022-09-10 01:39:47 +00:00
|
|
|
, gtk4
|
2024-07-05 18:54:07 +00:00
|
|
|
, libevdev
|
|
|
|
, libgit2
|
|
|
|
, libsodium
|
|
|
|
, libsoup_3
|
|
|
|
, libssh2
|
|
|
|
, libtool
|
2021-09-02 05:35:23 +00:00
|
|
|
, linux-pam
|
2024-07-05 18:54:07 +00:00
|
|
|
, llvmPackages
|
|
|
|
, nettle
|
|
|
|
, openssl
|
2022-12-27 17:36:30 +00:00
|
|
|
, pango
|
2024-07-05 18:54:07 +00:00
|
|
|
, pkg-config
|
|
|
|
, postgresql
|
2023-04-05 08:27:14 +00:00
|
|
|
, protobuf
|
2024-07-05 18:54:07 +00:00
|
|
|
, python3
|
|
|
|
, rdkafka
|
2023-08-26 07:50:36 +00:00
|
|
|
, seatd # =libseat
|
2024-07-05 18:54:07 +00:00
|
|
|
, sqlite
|
|
|
|
, udev
|
|
|
|
, webkitgtk_4_1
|
|
|
|
, zlib
|
2024-08-22 20:28:15 +00:00
|
|
|
, buildPackages
|
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
|
|
|
{
|
2022-10-17 18:33:14 +00:00
|
|
|
alsa-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ alsa-lib ];
|
|
|
|
};
|
|
|
|
|
2018-10-28 21:55:26 +00:00
|
|
|
cairo-rs = attrs: {
|
|
|
|
buildInputs = [ cairo ];
|
|
|
|
};
|
|
|
|
|
2022-09-10 01:37:53 +00:00
|
|
|
cairo-sys-rs = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ cairo ];
|
2024-07-09 15:12:38 +00:00
|
|
|
extraLinkFlags = [ "-L${zlib.out}/lib" ];
|
2022-09-10 01:37:53 +00:00
|
|
|
};
|
|
|
|
|
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.hostPlatform.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
|
|
|
};
|
|
|
|
|
2022-08-15 04:20:55 +00:00
|
|
|
evdev-sys = attrs: {
|
2023-04-06 20:43:22 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
] ++ lib.optionals (stdenv.buildPlatform.config != stdenv.hostPlatform.config) [
|
2024-07-05 18:54:07 +00:00
|
|
|
python3
|
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
libtool
|
2023-04-06 20:43:22 +00:00
|
|
|
];
|
2022-08-15 04:20:55 +00:00
|
|
|
buildInputs = [ libevdev ];
|
2023-04-05 08:27:38 +00:00
|
|
|
|
|
|
|
# This prevents libevdev's build.rs from trying to `git fetch` when HOST!=TARGET
|
|
|
|
prePatch = ''
|
|
|
|
touch libevdev/.git
|
|
|
|
'';
|
2022-08-15 04:20:55 +00:00
|
|
|
};
|
|
|
|
|
2021-10-17 00:36:49 +00:00
|
|
|
expat-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
};
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
|
2021-10-17 00:36:49 +00:00
|
|
|
freetype-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ freetype ];
|
|
|
|
};
|
|
|
|
|
|
|
|
glib-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ glib ];
|
2024-07-09 15:12:38 +00:00
|
|
|
extraLinkFlags = [ "-L${zlib.out}/lib" ];
|
2021-10-17 00:36:49 +00:00
|
|
|
};
|
|
|
|
|
2018-10-28 21:55:26 +00:00
|
|
|
gobject-sys = attrs: {
|
2024-07-05 18:54:07 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-10-28 21:55:26 +00:00
|
|
|
buildInputs = [ dbus-glib ];
|
|
|
|
};
|
|
|
|
|
|
|
|
gio-sys = attrs: {
|
2024-07-05 18:54:07 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-10-28 21:55:26 +00:00
|
|
|
buildInputs = [ dbus-glib ];
|
|
|
|
};
|
|
|
|
|
2024-07-05 18:54:07 +00:00
|
|
|
gdk-pixbuf = attrs: {
|
|
|
|
buildInputs = [ dbus-glib gdk-pixbuf ];
|
2018-10-28 21:55:26 +00:00
|
|
|
};
|
|
|
|
|
2024-07-05 18:54:07 +00:00
|
|
|
gdk-pixbuf-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-05-22 11:03:39 +00:00
|
|
|
buildInputs = [ gdk-pixbuf ];
|
2018-10-28 21:55:26 +00:00
|
|
|
};
|
|
|
|
|
2024-07-05 18:54:07 +00:00
|
|
|
gdk-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ gtk3 ]; # libgdk-3
|
|
|
|
};
|
|
|
|
|
|
|
|
gdkx11-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
};
|
|
|
|
|
2022-09-10 02:10:12 +00:00
|
|
|
gtk-sys = attrs: {
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
};
|
|
|
|
|
2022-09-10 01:39:47 +00:00
|
|
|
gtk4-sys = attrs: {
|
|
|
|
buildInputs = [ gtk4 ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
};
|
|
|
|
|
|
|
|
gdk4-sys = attrs: {
|
|
|
|
buildInputs = [ gtk4 ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
};
|
|
|
|
|
|
|
|
gsk4-sys = attrs: {
|
|
|
|
buildInputs = [ gtk4 ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2023-08-26 07:50:36 +00:00
|
|
|
libseat-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ seatd ];
|
|
|
|
};
|
|
|
|
|
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-10-17 00:36:49 +00:00
|
|
|
libudev-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ udev ];
|
|
|
|
};
|
|
|
|
|
2023-01-13 16:43:39 +00:00
|
|
|
graphene-sys = attrs: {
|
2023-06-22 11:49:31 +00:00
|
|
|
nativeBuildInputs = [ pkg-config gobject-introspection ];
|
|
|
|
buildInputs = [ graphene ];
|
2023-01-13 16:43:39 +00:00
|
|
|
};
|
|
|
|
|
2024-07-05 18:54:07 +00:00
|
|
|
javascriptcore-rs-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ webkitgtk_4_1 ];
|
|
|
|
};
|
|
|
|
|
2021-01-08 15:20:23 +00:00
|
|
|
nettle-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ nettle clang ];
|
2024-11-07 09:43:39 +00:00
|
|
|
LIBCLANG_PATH = "${lib.getLib llvmPackages.libclang}/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
|
|
|
|
2024-06-21 15:21:39 +00:00
|
|
|
opentelemetry-proto = attrs: {
|
|
|
|
nativeBuildInputs = [ protobuf ];
|
|
|
|
};
|
|
|
|
|
2021-08-15 06:55:20 +00:00
|
|
|
pam-sys = attr: {
|
|
|
|
buildInputs = [ linux-pam ];
|
|
|
|
};
|
|
|
|
|
2022-12-27 17:36:30 +00:00
|
|
|
pango-sys = attr: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ pango ];
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2023-04-05 08:27:14 +00:00
|
|
|
prost-build = attr: {
|
|
|
|
nativeBuildInputs = [ protobuf ];
|
|
|
|
};
|
|
|
|
|
2024-06-21 15:21:39 +00:00
|
|
|
prost-wkt-types = attr: {
|
|
|
|
nativeBuildInputs = [ protobuf ];
|
|
|
|
};
|
|
|
|
|
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: {
|
2022-04-28 18:24:46 +00:00
|
|
|
propagatedBuildInputs = lib.optional stdenv.hostPlatform.isDarwin 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 ];
|
|
|
|
};
|
|
|
|
|
2022-09-10 02:52:42 +00:00
|
|
|
pangocairo-sys = attr: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ pango ];
|
|
|
|
};
|
|
|
|
|
2021-01-08 15:20:23 +00:00
|
|
|
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.hostPlatform.isDarwin Security;
|
2018-10-28 21:56:30 +00:00
|
|
|
};
|
|
|
|
|
2021-10-17 00:36:49 +00:00
|
|
|
servo-fontconfig-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2022-08-13 00:58:08 +00:00
|
|
|
buildInputs = [ freetype fontconfig ];
|
2021-10-17 00:36:49 +00:00
|
|
|
};
|
|
|
|
|
2024-07-05 18:54:07 +00:00
|
|
|
soup3-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libsoup_3 ];
|
2024-07-09 15:12:38 +00:00
|
|
|
extraLinkFlags = [ "-L${zlib.out}/lib" ];
|
2024-07-05 18:54:07 +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
|
|
|
|
2024-06-21 15:21:39 +00:00
|
|
|
tonic-reflection = attrs: {
|
|
|
|
nativeBuildInputs = [ protobuf ];
|
|
|
|
};
|
|
|
|
|
2024-07-05 18:54:07 +00:00
|
|
|
webkit2gtk-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ webkitgtk_4_1 ];
|
2024-07-09 15:12:38 +00:00
|
|
|
extraLinkFlags = [ "-L${zlib.out}/lib" ];
|
2024-07-05 18:54:07 +00:00
|
|
|
};
|
|
|
|
|
2018-10-28 21:55:26 +00:00
|
|
|
xcb = attrs: {
|
|
|
|
buildInputs = [ python3 ];
|
2018-05-17 16:09:33 +00:00
|
|
|
};
|
2022-09-10 02:51:43 +00:00
|
|
|
|
|
|
|
atk-sys = attrs: {
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ atk ];
|
|
|
|
};
|
|
|
|
|
2024-08-22 20:28:15 +00:00
|
|
|
# Assumes it can run Command::new(env::var("CARGO")).arg("locate-project")
|
|
|
|
# https://github.com/bkchr/proc-macro-crate/blame/master/src/lib.rs#L244
|
|
|
|
proc-macro-crate = attrs: lib.optionalAttrs (lib.versionAtLeast attrs.version "2.0") {
|
|
|
|
prePatch = (attrs.prePatch or "") + ''
|
|
|
|
substituteInPlace \
|
|
|
|
src/lib.rs \
|
|
|
|
--replace-fail \
|
|
|
|
'env::var("CARGO").map_err(|_| Error::CargoEnvVariableNotSet)?' \
|
|
|
|
'"${lib.getBin buildPackages.cargo}/bin/cargo"'
|
|
|
|
'';
|
|
|
|
};
|
2017-12-12 10:55:15 +00:00
|
|
|
}
|