mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 02:11:38 +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 ];
|
||
|
}
|