pomsky: init at 0.8

This commit is contained in:
figsoda 2022-12-23 00:31:08 -05:00
parent 1693ed2be9
commit 9af435fa0e
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "pomsky";
version = "0.8";
src = fetchFromGitHub {
owner = "rulex-rs";
repo = pname;
rev = "v${version}";
sha256 = "1bb28f80wxjpy23mp9zamkprl8xbnx99rmmn8nxcaapq360zv9yi";
};
cargoSha256 = "sha256-Io8Ar7eNgULBIzI0rlitMI+9hLLWzI8pFwmH38hVVYU=";
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";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -10774,6 +10774,8 @@ with pkgs;
polypane = callPackage ../applications/networking/browsers/polypane { };
pomsky = callPackage ../tools/text/pomsky { };
ponysay = callPackage ../tools/misc/ponysay { };
popfile = callPackage ../tools/text/popfile { };