Merge pull request #183190 from figsoda/update-lunatic

lunatic: 0.7.5 -> 0.9.0
This commit is contained in:
Winter 2022-07-28 11:55:00 -04:00 committed by GitHub
commit f1d87d0aab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,17 @@
{ lib, rustPlatform, fetchFromGitHub, cmake, stdenv }:
{ lib, rustPlatform, fetchFromGitHub, cmake }:
rustPlatform.buildRustPackage rec {
pname = "lunatic";
version = "0.7.5";
version = "0.9.0";
src = fetchFromGitHub {
owner = "lunatic-solutions";
repo = pname;
rev = "v${version}";
sha256 = "sha256-HqDrGoyYzdx8OTanlRd95L1wAtFeew7Xs2rZ7nK2Zus=";
sha256 = "sha256-gHG8jk23qTANbLNPH4Q+YusEkDZ/G33SARAsLVLrVPs=";
};
cargoSha256 = "sha256-t3EwVYrKx7dvUcSp0B1iUAklg7WdQDld/T0O1HgHw54=";
cargoSha256 = "sha256-keu9lNYuOruU58YBPyqtDqBS/jjruK9GcYrKv7dGmlQ=";
nativeBuildInputs = [ cmake ];
@ -21,6 +21,5 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/lunatic-solutions/lunatic/blob/v${version}/RELEASES.md";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
broken = stdenv.isDarwin;
};
}