mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
59 lines
1.6 KiB
Nix
59 lines
1.6 KiB
Nix
{ lib, fetchFromGitLab, stdenv, llvmPackages_12, cargo, libiconv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.5";
|
|
pname = "tezos-rust-libs";
|
|
src = fetchFromGitLab {
|
|
owner = "tezos";
|
|
repo = "tezos-rust-libs";
|
|
rev = "v${version}";
|
|
hash = "sha256-SuCqDZDXmWdGI/GN+3nYcUk66jnW5FQQaeTB76/rvaw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ llvmPackages_12.llvm cargo ];
|
|
propagatedBuildInputs = [ llvmPackages_12.libllvm ];
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
cargo build \
|
|
--target-dir target-librustzcash \
|
|
--package librustzcash \
|
|
--release
|
|
|
|
cargo build \
|
|
--target-dir target-wasmer \
|
|
--package wasmer-c-api \
|
|
--no-default-features \
|
|
--features singlepass,cranelift,wat,middlewares,universal \
|
|
--release
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/lib/tezos-rust-libs/rust
|
|
cp "librustzcash/include/librustzcash.h" \
|
|
"target-librustzcash/release/librustzcash.a" \
|
|
"wasmer-2.3.0/lib/c-api/wasm.h" \
|
|
"wasmer-2.3.0/lib/c-api/wasmer.h" \
|
|
"target-wasmer/release/libwasmer.a" \
|
|
"$out/lib/tezos-rust-libs"
|
|
cp -r "librustzcash/include/rust" "$out/lib/tezos-rust-libs"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
cargoVendorDir = "./vendor";
|
|
|
|
meta = {
|
|
homepage = "https://gitlab.com/tezos/tezos-rust-libs";
|
|
description = "Tezos: all rust dependencies and their dependencies";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
}
|