frawk: 0.4.6 -> 0.4.7

Changelog: https://github.com/ezrosent/frawk/releases/tag/v0.4.7
This commit is contained in:
figsoda 2023-01-02 16:23:25 -05:00
parent 41b390e0b3
commit 390c68c9d2

View File

@ -10,14 +10,14 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "frawk"; pname = "frawk";
version = "0.4.6"; version = "0.4.7";
src = fetchCrate { src = fetchCrate {
inherit pname version; inherit pname version;
sha256 = "sha256-yEdfMikMcsQePxQL1+lma95O1x5z1B7aXAEf8apuGaU="; sha256 = "sha256-fqOFFkw+mV9QLTH3K6Drk3kDqU4wrQTj7OQrtgYuD7M=";
}; };
cargoSha256 = "sha256-osi77Fx8jSfIvAIpThgPbnuJVF/Ydr2/+ROHcDG5ZbA="; cargoSha256 = "sha256-G39/CESjMouwPQJBdsmd+MBusGNQmyNjw3PJSFBCdSk=";
buildInputs = [ libxml2 ncurses zlib ]; buildInputs = [ libxml2 ncurses zlib ];
@ -36,8 +36,8 @@ rustPlatform.buildRustPackage rec {
meta = with lib; { meta = with lib; {
description = "A small programming language for writing short programs processing textual data"; description = "A small programming language for writing short programs processing textual data";
homepage = "https://github.com/ezrosent/frawk"; homepage = "https://github.com/ezrosent/frawk";
changelog = "https://github.com/ezrosent/frawk/releases/tag/v${version}";
license = with licenses; [ mit /* or */ asl20 ]; license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ]; maintainers = with maintainers; [ figsoda ];
platforms = platforms.x86;
}; };
} }