lol

lunatic: 0.12.0 -> 0.13.2

Diff: https://github.com/lunatic-solutions/lunatic/compare/v0.12.0...v0.13.2

Changelog: https://github.com/lunatic-solutions/lunatic/blob/v0.13.2/CHANGELOG.md

figsoda f450ee14 69259eec

+22 -9
+21 -6
pkgs/development/interpreters/lunatic/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub, stdenv, Security }: 2 3 rustPlatform.buildRustPackage rec { 4 pname = "lunatic"; 5 - version = "0.12.0"; 6 7 src = fetchFromGitHub { 8 owner = "lunatic-solutions"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-7fxccufM5tunbutABEtsa6++OLTsS72oA219zvf+KN8="; 12 }; 13 14 - cargoSha256 = "sha256-sHSQUvHTwyqMrGmwpblqpS4HfFiWGb+70a1uloDu2wY="; 15 16 - buildInputs = lib.optional stdenv.isDarwin Security; 17 18 checkFlags = [ 19 # requires simd support which is not always available on hydra ··· 23 meta = with lib; { 24 description = "An Erlang inspired runtime for WebAssembly"; 25 homepage = "https://lunatic.solutions"; 26 - changelog = "https://github.com/lunatic-solutions/lunatic/blob/v${version}/RELEASES.md"; 27 license = with licenses; [ mit /* or */ asl20 ]; 28 maintainers = with maintainers; [ figsoda ]; 29 };
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , pkg-config 5 + , openssl 6 + , stdenv 7 + , darwin 8 + }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "lunatic"; 12 + version = "0.13.2"; 13 14 src = fetchFromGitHub { 15 owner = "lunatic-solutions"; 16 repo = pname; 17 rev = "v${version}"; 18 + hash = "sha256-uMMssZaPDZn3bOtQIho+GvUCPmzRllv7eJ+SJuKaYtg="; 19 }; 20 21 + cargoHash = "sha256-ALjlQsxmZVREyi3ZGMJMv/38kkMjYh+hTSr/0avYJVs="; 22 + 23 + nativeBuildInputs = [ 24 + pkg-config 25 + ]; 26 27 + buildInputs = [ 28 + openssl 29 + ] ++ lib.optionals stdenv.isDarwin [ 30 + darwin.apple_sdk.frameworks.Security 31 + ]; 32 33 checkFlags = [ 34 # requires simd support which is not always available on hydra ··· 38 meta = with lib; { 39 description = "An Erlang inspired runtime for WebAssembly"; 40 homepage = "https://lunatic.solutions"; 41 + changelog = "https://github.com/lunatic-solutions/lunatic/blob/v${version}/CHANGELOG.md"; 42 license = with licenses; [ mit /* or */ asl20 ]; 43 maintainers = with maintainers; [ figsoda ]; 44 };
+1 -3
pkgs/top-level/all-packages.nix
··· 9785 9786 lshw = callPackage ../tools/system/lshw { }; 9787 9788 - lunatic = callPackage ../development/interpreters/lunatic { 9789 - inherit (darwin.apple_sdk.frameworks) Security; 9790 - }; 9791 9792 lux = callPackage ../tools/video/lux { }; 9793
··· 9785 9786 lshw = callPackage ../tools/system/lshw { }; 9787 9788 + lunatic = callPackage ../development/interpreters/lunatic { }; 9789 9790 lux = callPackage ../tools/video/lux { }; 9791