Merge pull request #208805 from figsoda/frawk

frawk: 0.4.6 -> 0.4.7

authored by figsoda and committed by GitHub a0051de8 d3ba9357

+4 -4
+4 -4
pkgs/tools/text/frawk/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "frawk"; 13 - version = "0.4.6"; 13 + version = "0.4.7"; 14 14 15 15 src = fetchCrate { 16 16 inherit pname version; 17 - sha256 = "sha256-yEdfMikMcsQePxQL1+lma95O1x5z1B7aXAEf8apuGaU="; 17 + sha256 = "sha256-fqOFFkw+mV9QLTH3K6Drk3kDqU4wrQTj7OQrtgYuD7M="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-osi77Fx8jSfIvAIpThgPbnuJVF/Ydr2/+ROHcDG5ZbA="; 20 + cargoSha256 = "sha256-G39/CESjMouwPQJBdsmd+MBusGNQmyNjw3PJSFBCdSk="; 21 21 22 22 buildInputs = [ libxml2 ncurses zlib ]; 23 23 ··· 36 36 meta = with lib; { 37 37 description = "A small programming language for writing short programs processing textual data"; 38 38 homepage = "https://github.com/ezrosent/frawk"; 39 + changelog = "https://github.com/ezrosent/frawk/releases/tag/v${version}"; 39 40 license = with licenses; [ mit /* or */ asl20 ]; 40 41 maintainers = with maintainers; [ figsoda ]; 41 - platforms = platforms.x86; 42 42 }; 43 43 }