hexyl: 0.8.0 -> 0.9.0

This commit is contained in:
Sandro Jäckel 2021-07-13 23:21:51 +02:00
parent f7dd9ff03c
commit c9c530fb3a
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,17 +1,17 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "hexyl";
version = "0.8.0";
pname = "hexyl";
version = "0.9.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
sha256 = "0aj2sysl0spf5zlcd5kfzlw97w7dzf9x93pv0d1v9blnbd1rz7lm";
owner = "sharkdp";
repo = pname;
rev = "v${version}";
sha256 = "sha256-hLDx5OzCE5iA492V3+dhaav2l8/rOVWyskrU4Gz1hf4=";
};
cargoSha256 = "08hn0csw12xaag95gb5rj4q7k2zyy9j9bf4iw3b0r3ndh66qqra2";
cargoSha256 = "sha256-CGaCMrShagK4dAdwJtaeUMJlYOlG/cH+6E1QDYGrqL0=";
meta = with lib; {
changelog = "https://github.com/sharkdp/hexyl/releases/tag/v${version}";
@ -22,9 +22,8 @@ rustPlatform.buildRustPackage rec {
printable ASCII characters, ASCII whitespace characters, other ASCII
characters and non-ASCII).
'';
homepage = "https://github.com/sharkdp/hexyl";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux ++ platforms.darwin;
homepage = "https://github.com/sharkdp/hexyl";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir SuperSandro2000 ];
};
}