mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-17 03:44:34 +03:00
10 lines
182 B
Nix
10 lines
182 B
Nix
|
{ pkgs, ed25519 }:
|
||
|
|
||
|
pkgs.stdenv.mkDerivation rec {
|
||
|
name = "ge-additions";
|
||
|
builder = ./builder.sh;
|
||
|
src = ../../../pkg/ge-additions;
|
||
|
|
||
|
nativeBuildInputs = [ ed25519 ];
|
||
|
}
|