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