mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-20 13:22:07 +03:00
12 lines
281 B
Nix
12 lines
281 B
Nix
{ stdenv, openssl, gmp, ed25519, secp256k1, ge-additions, argon2, libaes_siv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "urcrypt";
|
|
builder = ./builder.sh;
|
|
src = ../../../pkg/urcrypt;
|
|
|
|
buildInputs = [
|
|
openssl gmp ed25519 secp256k1 argon2 ge-additions libaes_siv
|
|
];
|
|
}
|