mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 10:21:31 +03:00
13 lines
240 B
Nix
13 lines
240 B
Nix
|
{ env_name, env, deps }:
|
||
|
|
||
|
env.make_derivation rec {
|
||
|
name = "ge-additions";
|
||
|
builder = ./builder.sh;
|
||
|
src = ../../../pkg/ge-additions;
|
||
|
|
||
|
nativeBuildInputs = [ deps.ed25519 ];
|
||
|
|
||
|
CC = "${env.host}-gcc";
|
||
|
AR = "${env.host}-ar";
|
||
|
}
|