summary refs log tree commit diff
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2022-05-31 19:50:16 +0200
committerGitHub <noreply@github.com>2022-05-31 19:50:16 +0200
commit67b2c5e914415a8b80efa4effc8974b0a6e9ba03 (patch)
tree1add633e813df0c84fb68421a73d00e5ea0d6284
parent185ee01e806b2986363d03982b57e9a9347a300c (diff)
parent654856e8dffe7188217ed089211e2f37c6c58be6 (diff)
downloadnixpkgs-67b2c5e914415a8b80efa4effc8974b0a6e9ba03.tar
nixpkgs-67b2c5e914415a8b80efa4effc8974b0a6e9ba03.tar.gz
nixpkgs-67b2c5e914415a8b80efa4effc8974b0a6e9ba03.tar.bz2
nixpkgs-67b2c5e914415a8b80efa4effc8974b0a6e9ba03.tar.lz
nixpkgs-67b2c5e914415a8b80efa4effc8974b0a6e9ba03.tar.xz
nixpkgs-67b2c5e914415a8b80efa4effc8974b0a6e9ba03.tar.zst
nixpkgs-67b2c5e914415a8b80efa4effc8974b0a6e9ba03.zip
Merge pull request #175310 from sayanarijit/master
xplr: 0.17.6 -> 0.18.0
-rw-r--r--pkgs/applications/misc/xplr/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/xplr/default.nix b/pkgs/applications/misc/xplr/default.nix
index 578c08b207e..a2a6ae1f84b 100644
--- a/pkgs/applications/misc/xplr/default.nix
+++ b/pkgs/applications/misc/xplr/default.nix
@@ -2,22 +2,22 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "xplr";
-  version = "0.17.6";
+  version = "0.18.0";
 
   src = fetchFromGitHub {
     owner = "sayanarijit";
     repo = pname;
     rev = "v${version}";
-    sha256 = "1lgfa1y5vsm3gqxizdgbn816klcamqmshw817mwan5i5yx9nk6xz";
+    sha256 = "sha256-L9eJd1ivFhAmjKVm+HFq9fNiA/UA/x2akEfa1CrUSBo=";
   };
 
   buildInputs = lib.optional stdenv.isDarwin libiconv;
 
-  cargoSha256 = "sha256-va+MKnHVdkQNq1SFvvoYnb28tW61W7d97LoCMNzwZHE=";
+  cargoSha256 = "sha256-niH8gj49Wr20Lpa6UAczQ+YHgJlkvZYKJGFH6Spk9Ho=";
 
   meta = with lib; {
     description = "A hackable, minimal, fast TUI file explorer";
-    homepage = "https://github.com/sayanarijit/xplr";
+    homepage = "https://xplr.dev";
     license = licenses.mit;
     maintainers = with maintainers; [ sayanarijit suryasr007 ];
   };