mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 04:41:37 +03:00
12 lines
273 B
Nix
12 lines
273 B
Nix
{ stdenv, pkgconfig, openssl, gmp, secp256k1, argon2, scrypt, libaes_siv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "urcrypt";
|
|
builder = ./builder.sh;
|
|
src = ../../../pkg/urcrypt;
|
|
|
|
buildInputs = [
|
|
pkgconfig openssl gmp secp256k1 argon2 scrypt libaes_siv
|
|
];
|
|
}
|