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