Merge pull request #185125 from figsoda/update-lunatic
lunatic: 0.9.0 -> 0.10.0
This commit is contained in:
commit
c1dbfeb2c0
2 changed files with 9 additions and 5 deletions
|
@ -1,20 +1,22 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub, cmake }:
|
||||
{ lib, rustPlatform, fetchFromGitHub, cmake, stdenv, Security }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "lunatic";
|
||||
version = "0.9.0";
|
||||
version = "0.10.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lunatic-solutions";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-gHG8jk23qTANbLNPH4Q+YusEkDZ/G33SARAsLVLrVPs=";
|
||||
sha256 = "sha256-MfN4NZIkzQji+bIfpgDdVyGXiD291ULGT2JslSevr/w=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-keu9lNYuOruU58YBPyqtDqBS/jjruK9GcYrKv7dGmlQ=";
|
||||
cargoSha256 = "sha256-Qpu6FKIrDZyEbcv/uRjInz6lmMeTSZvY/JGLJe+My+U=";
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = lib.optional stdenv.isDarwin Security;
|
||||
|
||||
meta = with lib; {
|
||||
description = "An Erlang inspired runtime for WebAssembly";
|
||||
homepage = "https://lunatic.solutions";
|
||||
|
|
|
@ -8493,7 +8493,9 @@ with pkgs;
|
|||
|
||||
lshw = callPackage ../tools/system/lshw { };
|
||||
|
||||
lunatic = callPackage ../development/interpreters/lunatic { };
|
||||
lunatic = callPackage ../development/interpreters/lunatic {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
lv = callPackage ../tools/text/lv { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue