nixpkgs/pkgs/development/tools/wasm-pack/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, rustPlatform
, pkg-config
2020-02-11 10:34:23 +00:00
, libressl
2019-08-08 03:52:01 +01:00
, curl
, Security
}:
rustPlatform.buildRustPackage rec {
2019-08-31 12:41:23 +01:00
pname = "wasm-pack";
2021-09-20 20:38:53 +01:00
version = "0.10.1";
src = fetchFromGitHub {
owner = "rustwasm";
repo = "wasm-pack";
rev = "v${version}";
2021-09-20 20:38:53 +01:00
sha256 = "sha256-I5TxpJTSus3fXMV0We9SCVMEERS0wIdYvC8SHo8zEHY=";
};
2021-09-20 20:38:53 +01:00
cargoSha256 = "sha256-MmbQb2JYaDpLijKRAxzD9pR4gh+Eoem0MtfdiuRC7Tg=";
nativeBuildInputs = [ pkg-config ];
2020-02-11 10:34:23 +00:00
buildInputs = [
# LibreSSL works around segfault issues caused by OpenSSL being unable to
# gracefully exit while doing work.
# See: https://github.com/rustwasm/wasm-pack/issues/650
libressl
] ++ lib.optionals stdenv.isDarwin [ curl Security ];
2019-08-08 03:52:01 +01:00
2021-09-20 20:38:53 +01:00
# Needed to get openssl-sys to use pkg-config.
OPENSSL_NO_VENDOR = 1;
2020-02-11 10:34:23 +00:00
# Most tests rely on external resources and build artifacts.
# Disabling check here to work with build sandboxing.
doCheck = false;
meta = with lib; {
description = "A utility that builds rust-generated WebAssembly package";
homepage = "https://github.com/rustwasm/wasm-pack";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = [ maintainers.dhkl ];
};
}