mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 10:21:31 +03:00
12 lines
254 B
Nix
12 lines
254 B
Nix
{ stdenv, openssl, gmp, ed25519, secp256k1, argon2, libaes_siv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "urcrypt";
|
|
builder = ./builder.sh;
|
|
src = ../../../pkg/urcrypt;
|
|
|
|
buildInputs = [
|
|
openssl gmp ed25519 secp256k1 argon2 libaes_siv
|
|
];
|
|
}
|