overlay/plume: 0.7.1 -> 0.7.2-1

This commit is contained in:
Astro 2022-06-13 18:01:38 +02:00
parent 43ca19b644
commit b963cc5281
2 changed files with 886 additions and 1401 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,7 @@
{ naersk, fenix
, stdenv, fetchFromGitHub, buildEnv
, pkg-config, gettext, wasm-pack, wasm-bindgen-cli, binaryen
, curl, nodejs, rustPlatform
, stdenv, fetchFromGitHub, buildEnv, fetchCrate
, pkg-config, gettext, wasm-pack, binaryen
, openssl, postgresql
}:
@ -24,14 +25,35 @@ let
rustc = rust-wasm;
};
wasm-bindgen-cli = rustPlatform.buildRustPackage rec {
pname = "wasm-bindgen-cli";
version = "0.2.81";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-DUcY22b9+PD6RD53CwcoB+ynGulYTEYjkkonDNeLbGM=";
};
cargoSha256 = "sha256-mfVQ6rSzCgwYrN9WwydEpkm6k0E3302Kfs/LaGzRSHE=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
checkInputs = [ nodejs ];
# other tests require it to be ran in the wasm-bindgen monorepo
cargoTestFlags = [ "--test=interface-types" ];
};
conv = fetchFromGitHub {
owner = "DanielKeep";
repo = "rust-conv";
rev = "90a1e85edcc6d63616436a6049b08ba87c76d703";
rev = "90a1e85edcc6d63616438a6049b08ba87c76d703";
sha256 = "029xq9cabz3scbmd84b8qkrg0q7x6fm27ijq869lkpq8bwjxvcb6";
};
version = "0.7.1";
version = "0.7.2-1";
src = stdenv.mkDerivation {
pname = "plume-src";
@ -39,8 +61,9 @@ let
src = fetchFromGitHub {
owner = "Plume-org";
repo = "Plume";
rev = version;
sha256 = "01mgg9ngpjinlwbgm2s287namilm3ddlwpn0hjs6267608vjgi04";
# rev = version;
rev = "620726cc2564ededb98af42c3c2e35407fcf1184";
sha256 = "sha256-B8EAV61qdTBGn+vGQZlXjAaSkEPs8wr9ZH1Roq3CZZs=";
};
phases = [ "unpackPhase" "patchPhase" "installPhase" ];
patches = [
@ -58,6 +81,7 @@ let
nativeBuildInputs = [
pkg-config gettext
wasm-bindgen-cli
];
buildInputs = [
openssl