summary refs log tree commit diff
path: root/pkgs/tools/text/difftastic/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-09-07 18:00:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2021-09-07 18:00:00 -0500
commitf4c654f240308e0db6d2bd70e198db2a1fa034db (patch)
tree33d107a02bccfbb066763d3d303ac9d0a4ea8e17 /pkgs/tools/text/difftastic/default.nix
parent8882ec6ff968a2f10d9d9ec2ab695791859e0852 (diff)
downloadnixpkgs-f4c654f240308e0db6d2bd70e198db2a1fa034db.tar
nixpkgs-f4c654f240308e0db6d2bd70e198db2a1fa034db.tar.gz
nixpkgs-f4c654f240308e0db6d2bd70e198db2a1fa034db.tar.bz2
nixpkgs-f4c654f240308e0db6d2bd70e198db2a1fa034db.tar.lz
nixpkgs-f4c654f240308e0db6d2bd70e198db2a1fa034db.tar.xz
nixpkgs-f4c654f240308e0db6d2bd70e198db2a1fa034db.tar.zst
nixpkgs-f4c654f240308e0db6d2bd70e198db2a1fa034db.zip
difftastic: 0.6 -> 0.8
Diffstat (limited to 'pkgs/tools/text/difftastic/default.nix')
-rw-r--r--pkgs/tools/text/difftastic/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/text/difftastic/default.nix b/pkgs/tools/text/difftastic/default.nix
index 3a32f855c0c..bfe43095748 100644
--- a/pkgs/tools/text/difftastic/default.nix
+++ b/pkgs/tools/text/difftastic/default.nix
@@ -2,22 +2,22 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "difftastic";
-  version = "0.6";
+  version = "0.8";
 
   src = fetchFromGitHub {
     owner = "wilfred";
     repo = pname;
     rev = version;
-    sha256 = "WFvxdRCbTBW1RGn2SvAo2iXn82OO/Z06cZQkIu4eiew=";
+    sha256 = "0103py4v4v7xqv85yiczhd9w9h1aa54svhhdibvbl6x4b35y2mk5";
   };
 
-  cargoSha256 = "2hRUfIxNVs4uSrEESas3wvvVsZHVocP8aiO7K0NZ+mY=";
+  cargoSha256 = "1k0d7yadicfzfc2m1aqs4c4a2k3srb54fpwarc3kwn26v3vfjai1";
 
   meta = with lib; {
     description = "A syntax-aware diff";
     homepage = "https://github.com/Wilfred/difftastic";
+    changelog = "https://github.com/Wilfred/difftastic/raw/${version}/CHANGELOG.md";
     license = licenses.mit;
     maintainers = with maintainers; [ ethancedwards8 ];
-    platforms = platforms.unix;
   };
 }