mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-03 14:37:05 +03:00
cc3a139440
This vendors libaes_siv so that we can use it to jet +sivc:aes:crypto.
10 lines
174 B
Nix
10 lines
174 B
Nix
{ pkgs }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "libaes_siv";
|
|
builder = ./builder.sh;
|
|
src = ../../../pkg/libaes_siv;
|
|
|
|
nativeBuildInputs = [ pkgs.openssl ];
|
|
}
|