summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-14 00:37:51 +0200
committerGitHub <noreply@github.com>2021-07-14 00:37:51 +0200
commita68f9c2b77662562249f7a11a9cc736d0b28f6af (patch)
treeb301033b24e1893104dc620ac4da0c8b7a4fa97a /pkgs
parent3d260a2d0edffce5095a5f813e9227c4864e9715 (diff)
parentc9c530fb3a9aa3f547b610942c2be7a5d510cfcd (diff)
downloadnixpkgs-a68f9c2b77662562249f7a11a9cc736d0b28f6af.tar
nixpkgs-a68f9c2b77662562249f7a11a9cc736d0b28f6af.tar.gz
nixpkgs-a68f9c2b77662562249f7a11a9cc736d0b28f6af.tar.bz2
nixpkgs-a68f9c2b77662562249f7a11a9cc736d0b28f6af.tar.lz
nixpkgs-a68f9c2b77662562249f7a11a9cc736d0b28f6af.tar.xz
nixpkgs-a68f9c2b77662562249f7a11a9cc736d0b28f6af.tar.zst
nixpkgs-a68f9c2b77662562249f7a11a9cc736d0b28f6af.zip
Merge pull request #130133 from SuperSandro2000/hexyl
hexyl: 0.8.0 -> 0.9.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/hexyl/default.nix21
1 files changed, 10 insertions, 11 deletions
diff --git a/pkgs/tools/misc/hexyl/default.nix b/pkgs/tools/misc/hexyl/default.nix
index 3f11490fcc4..dcab5f249fe 100644
--- a/pkgs/tools/misc/hexyl/default.nix
+++ b/pkgs/tools/misc/hexyl/default.nix
@@ -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 ];
   };
 }