mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 10:21:31 +03:00
10 lines
199 B
Nix
10 lines
199 B
Nix
{ pkgs, ge-additions, ed25519 }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "urcrypt";
|
|
builder = ./builder.sh;
|
|
src = ../../../pkg/urcrypt;
|
|
|
|
nativeBuildInputs = [ ed25519 ge-additions ];
|
|
}
|