mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-16 14:31:06 +00:00
defaultCrateOverrides: add thrussh-libsodium
This commit is contained in:
parent
9f24e68b99
commit
508bf1b318
1 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ stdenv, pkgconfig, curl, darwin, libiconv, libgit2, libssh2,
|
{ stdenv, pkgconfig, curl, darwin, libiconv, libgit2, libssh2,
|
||||||
openssl, sqlite, zlib, dbus_libs, dbus_glib, gdk_pixbuf, cairo, python3, ... }:
|
openssl, sqlite, zlib, dbus_libs, dbus_glib, gdk_pixbuf, cairo, python3,
|
||||||
|
libsodium, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation;
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation;
|
||||||
|
@ -36,6 +37,7 @@ in
|
||||||
openssl-sys = attrs: {
|
openssl-sys = attrs: {
|
||||||
buildInputs = [ pkgconfig openssl ];
|
buildInputs = [ pkgconfig openssl ];
|
||||||
};
|
};
|
||||||
|
|
||||||
dbus = attrs: {
|
dbus = attrs: {
|
||||||
buildInputs = [ pkgconfig dbus_libs ];
|
buildInputs = [ pkgconfig dbus_libs ];
|
||||||
};
|
};
|
||||||
|
@ -60,4 +62,8 @@ in
|
||||||
xcb = attrs: {
|
xcb = attrs: {
|
||||||
buildInputs = [ python3 ];
|
buildInputs = [ python3 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
thrussh-libsodium = attrs: {
|
||||||
|
buildInputs = [ pkgconfig libsodium ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue