mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-11 16:09:31 +03:00
cc3a139440
This vendors libaes_siv so that we can use it to jet +sivc:aes:crypto.
7 lines
125 B
Nix
7 lines
125 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
with pkgs;
|
|
stdenv.mkDerivation {
|
|
name = "libaes_siv";
|
|
buildInputs = [ cmake openssl ];
|
|
}
|