about summary refs log tree commit diff
path: root/pkgs/tools/system/tre-command
diff options
context:
space:
mode:
authorDaniel Duan <daniel@duan.ca>2020-06-15 21:06:09 -0700
committerDaniel Duan <daniel@duan.ca>2020-06-15 21:30:11 -0700
commit72d867a120523c9a2a72d524357a06652deed465 (patch)
tree70dd9ab13f0f77318f8d8e39ead8fbb08a33303e /pkgs/tools/system/tre-command
parentbe5d6461298834b8d433ea501cd477cb5c901116 (diff)
tre-command: 0.2.3 -> 0.3.1
Also, change `pname` to match the actual desired name. Avoid name
conflict with the other (older) package named `tre`.
Diffstat (limited to 'pkgs/tools/system/tre-command')
-rw-r--r--pkgs/tools/system/tre-command/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/system/tre-command/default.nix b/pkgs/tools/system/tre-command/default.nix
index bc0fa7ea988de..b420126a95e61 100644
--- a/pkgs/tools/system/tre-command/default.nix
+++ b/pkgs/tools/system/tre-command/default.nix
@@ -1,17 +1,17 @@
 { rustPlatform, fetchFromGitHub, stdenv }:
 
 rustPlatform.buildRustPackage rec {
-  pname = "tre";
-  version = "0.2.3";
+  pname = "tre-command";
+  version = "0.3.1";
 
   src = fetchFromGitHub {
     owner = "dduan";
     repo = "tre";
     rev = "v${version}";
-    sha256 = "1fazw2wn738iknbv54gv7qll7d4q2gy9bq1s3f3cv21cdv6bqral";
+    sha256 = "1fm3fszy7fd0dgf5dwm35nb0ym0waw92iyx128lr2vlbyzln6ija";
   };
 
-  cargoSha256 = "16bvnwgjf3kj99d77j1pkldbasxfwy55sj9sv9vf2z6llfmzfabd";
+  cargoSha256 = "0sk4dn5rrqhkaxm76y1d7rsjsw6pdjdhb2xv7qqrlivfk6y5k31x";
 
   meta = with stdenv.lib; {
     description = "Tree command, improved";