figsoda 2023-03-21 18:38:37 -04:00
parent e400f93529
commit 0219fa5fbf

View file

@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec {
pname = "pomsky";
version = "0.9";
version = "0.10";
src = fetchFromGitHub {
owner = "rulex-rs";
owner = "pomsky-lang";
repo = pname;
rev = "v${version}";
sha256 = "sha256-SR+cXCPcEejX3AauN3mS6zWU46m4nomMs1UVk+si1NY=";
hash = "sha256-V4WztquClcBQF74c8WalWITT+SRymEawLXmvTflNEGk=";
};
cargoSha256 = "sha256-5ASB2zPL+0DAPWoB/Ez+DUbEjhDvVk00yyN75w6jzYk=";
cargoHash = "sha256-34lI4zI1JMYek3sCXOWw08EqhaI1bqTGFPxeEYmEbXQ=";
# thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: invalid option '--test-threads''
doCheck = false;
@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "A portable, modern regular expression language";
homepage = "https://pomsky-lang.org";
changelog = "https://github.com/rulex-rs/pomsky/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/pomsky-lang/pomsky/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
};