forked from mirrors/nixpkgs
lunatic: init at 0.6.2
This commit is contained in:
parent
dc73ffe1bd
commit
9bd8dc43f5
24
pkgs/development/interpreters/lunatic/default.nix
Normal file
24
pkgs/development/interpreters/lunatic/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ cmake, fetchFromGitHub, lib, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "lunatic";
|
||||
version = "0.6.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lunatic-solutions";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1dz8v19jw9v55p3mz4932v6z24ihp6wk238n4d4lx9xj91mf3g6r";
|
||||
};
|
||||
|
||||
cargoSha256 = "1rkxl27l6ydmcq3flc6qbnd7zmpkfmyc86b8q4pi7dwhqnd5g70g";
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An Erlang inspired runtime for WebAssembly";
|
||||
homepage = "https://lunatic.solutions";
|
||||
license = with licenses; [ mit /* or */ asl20 ];
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -7049,6 +7049,8 @@ with pkgs;
|
|||
|
||||
ltris = callPackage ../games/ltris { };
|
||||
|
||||
lunatic = callPackage ../development/interpreters/lunatic { };
|
||||
|
||||
lv = callPackage ../tools/text/lv { };
|
||||
|
||||
lxc = callPackage ../os-specific/linux/lxc {
|
||||
|
|
Loading…
Reference in a new issue