urbit/nix/pkgs/urcrypt/default.nix

12 lines
258 B
Nix
Raw Normal View History

{ stdenv, pkgconfig, openssl, gmp, secp256k1, scrypt, libaes_siv }:
2020-08-29 21:55:58 +03:00
stdenv.mkDerivation rec {
name = "urcrypt";
builder = ./builder.sh;
src = ../../../pkg/urcrypt;
2020-08-29 21:55:58 +03:00
buildInputs = [
pkgconfig openssl gmp secp256k1 scrypt libaes_siv
2020-08-29 21:55:58 +03:00
];
}