mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 13:54:20 +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 ];
|
||
|
}
|