mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-20 05:11:46 +03:00
17 lines
315 B
Nix
17 lines
315 B
Nix
{ pkgs, deps }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "urcrypt";
|
|
builder = ./builder.sh;
|
|
src = ../../../pkg/urcrypt;
|
|
|
|
nativeBuildInputs =
|
|
with pkgs;
|
|
[ autoconf automake libtool m4 pkgconfig ];
|
|
|
|
buildInputs =
|
|
with pkgs;
|
|
with deps;
|
|
[ openssl gmp secp256k1 scrypt libaes_siv ];
|
|
}
|