mirror of
https://github.com/urbit/ares.git
synced 2024-11-22 06:32:47 +03:00
build: support latest urcrypt
This commit is contained in:
parent
9774da7b64
commit
4451a342c4
@ -29,7 +29,6 @@
|
|||||||
"rustfmt"
|
"rustfmt"
|
||||||
"rust-src"
|
"rust-src"
|
||||||
])
|
])
|
||||||
pkgs.autoconf-archive
|
|
||||||
pkgs.cargo-watch
|
pkgs.cargo-watch
|
||||||
pkgs.iconv
|
pkgs.iconv
|
||||||
pkgs.llvmPackages.clang
|
pkgs.llvmPackages.clang
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, openssl, cryptopp, secp256k1, libaes_siv }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive, pkg-config, openssl, cryptopp, secp256k1, libaes_siv }:
|
||||||
let rev = "375fa7e6a730d8aa517ca981b2b7b505bf4e1103";
|
let rev = "43479c3262a11e20da5f6218f3b0b3d63931ceea";
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
pname = "urcrypt";
|
pname = "urcrypt";
|
||||||
version = "git-${rev}";
|
version = "git-${rev}";
|
||||||
@ -7,14 +7,14 @@ in stdenv.mkDerivation {
|
|||||||
inherit rev;
|
inherit rev;
|
||||||
owner = "urbit";
|
owner = "urbit";
|
||||||
repo = "urcrypt";
|
repo = "urcrypt";
|
||||||
hash = "sha256:1c3cqmwr5mys4v9y0834hxqfr6aynm2gav7730bjzfvrdc21ijqa";
|
hash = "sha256-GkhqvhDyhsdzjWpR8uqmhdRdhxdpmLGWXtIUZPAbWZs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = ''
|
# preConfigure = ''
|
||||||
./autogen.sh
|
# ./autogen.sh
|
||||||
'';
|
# '';
|
||||||
|
|
||||||
nativeBuildInputs = [autoreconfHook pkg-config];
|
nativeBuildInputs = [autoreconfHook autoconf-archive pkg-config];
|
||||||
|
|
||||||
buildInputs = [openssl cryptopp secp256k1 libaes_siv];
|
buildInputs = [openssl cryptopp secp256k1 libaes_siv];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user