mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-14 15:04:14 +03:00
7 lines
125 B
Nix
7 lines
125 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
with pkgs;
|
||
|
stdenv.mkDerivation {
|
||
|
name = "libaes_siv";
|
||
|
buildInputs = [ cmake openssl ];
|
||
|
}
|