about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-08-11 18:04:31 -0500
committerGitHub <noreply@github.com>2023-08-11 18:04:31 -0500
commitc48df0be71801574978143e2908037af8fffea91 (patch)
treef76e06425eb090640dcd39e1befa17fd397ce453 /pkgs
parent3d1703e5767fd0612e66e7e39b15670b3e983869 (diff)
parent95ed6003b8544fec4d57c0ae1b5d46357c43293d (diff)
Merge pull request #248451 from marsam/update-intermodal
intermodal: 0.1.12 -> 0.1.13
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/intermodal/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/misc/intermodal/default.nix b/pkgs/tools/misc/intermodal/default.nix
index 555f4a529b92d..e4a296333569d 100644
--- a/pkgs/tools/misc/intermodal/default.nix
+++ b/pkgs/tools/misc/intermodal/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "intermodal";
-  version = "0.1.12";
+  version = "0.1.13";
 
   src = fetchFromGitHub {
     owner = "casey";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-yPyKo2j0Up8gDzi2xOBqpMwIw6rpXDCxc8fCuEblwFY=";
+    hash = "sha256-hKMO7ZicXSYESXWKmDC2ILD996KoYDXS5HJExyXMdX4=";
   };
 
-  cargoHash = "sha256-inJZTP4YwCZZ0JvSdGWnZbLN0A0B/+fz4g0XsfIQeq8=";
+  cargoHash = "sha256-7vtUMG6mxAHKnbouyTsaUf1myJssxYoqAIOjc6m86Fo=";
 
   # include_hidden test tries to use `chflags` on darwin
   checkFlagsArray = lib.optionals stdenv.isDarwin [ "--skip=subcommand::torrent::create::tests::include_hidden" ];
@@ -28,6 +28,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "User-friendly and featureful command-line BitTorrent metainfo utility";
     homepage = "https://github.com/casey/intermodal";
+    changelog = "https://github.com/casey/intermodal/releases/tag/v${version}";
     license = licenses.cc0;
     maintainers = with maintainers; [ Br1ght0ne xrelkd ];
     mainProgram = "imdl";