Merge pull request #45050 from sjmackenzie/rink-rs
carnix overrides: add gmp to rink-rs buildInputs & correct crateBin
This commit is contained in:
commit
cc288eef07
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, pkgconfig, curl, darwin, libiconv, libgit2, libssh2,
|
{ stdenv, pkgconfig, curl, darwin, libiconv, libgit2, libssh2,
|
||||||
openssl, sqlite, zlib, dbus, dbus-glib, gdk_pixbuf, cairo, python3,
|
openssl, sqlite, zlib, dbus, dbus-glib, gdk_pixbuf, cairo, python3,
|
||||||
libsodium, postgresql, ... }:
|
libsodium, postgresql, gmp, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
|
||||||
@ -58,6 +58,10 @@ in
|
|||||||
gdk-pixbuf = attrs: {
|
gdk-pixbuf = attrs: {
|
||||||
buildInputs = [ gdk_pixbuf ];
|
buildInputs = [ gdk_pixbuf ];
|
||||||
};
|
};
|
||||||
|
rink = attrs: {
|
||||||
|
buildInputs = [ gmp ];
|
||||||
|
crateBin = [ { name = "rink"; path = "src/bin/rink.rs"; } ];
|
||||||
|
};
|
||||||
cairo-rs = attrs: {
|
cairo-rs = attrs: {
|
||||||
buildInputs = [ cairo ];
|
buildInputs = [ cairo ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user