about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-01-04 14:00:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-01-04 14:00:00 -0500
commitcb53d495596f293fd094ae010e1035bbaa49f87d (patch)
tree7dc48606fbcf1e7c36a65967845942ec0ae21cfd
parent8440abe7e6f8f85eca9fd8ad9f8471971202c905 (diff)
downloadnixlib-cb53d495596f293fd094ae010e1035bbaa49f87d.tar
nixlib-cb53d495596f293fd094ae010e1035bbaa49f87d.tar.gz
nixlib-cb53d495596f293fd094ae010e1035bbaa49f87d.tar.bz2
nixlib-cb53d495596f293fd094ae010e1035bbaa49f87d.tar.lz
nixlib-cb53d495596f293fd094ae010e1035bbaa49f87d.tar.xz
nixlib-cb53d495596f293fd094ae010e1035bbaa49f87d.tar.zst
nixlib-cb53d495596f293fd094ae010e1035bbaa49f87d.zip
onefetch: 2.1.0 -> 2.2.0
Changelog: https://github.com/o2sh/onefetch/releases/tag/v2.2.0
-rw-r--r--pkgs/tools/misc/onefetch/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/tools/misc/onefetch/default.nix b/pkgs/tools/misc/onefetch/default.nix
index be8c4fb9c064..e51a00dc7bd0 100644
--- a/pkgs/tools/misc/onefetch/default.nix
+++ b/pkgs/tools/misc/onefetch/default.nix
@@ -1,15 +1,15 @@
-{ fetchFromGitHub, rustPlatform, stdenv
+{ fetchFromGitHub, rustPlatform, stdenv, fetchpatch
 , CoreFoundation, libiconv, libresolv, Security }:
 
 rustPlatform.buildRustPackage rec {
   pname = "onefetch";
-  version = "2.1.0";
+  version = "2.2.0";
 
   src = fetchFromGitHub {
     owner = "o2sh";
     repo = pname;
     rev = "v${version}";
-    sha256 = "02mdzpzfcxp9na86b4jcqqjd3id5jslgmnq1jc0vykg58xha51jg";
+    sha256 = "1sgpai3gx3w7w3ilmbnmzgdxdim6klkfiqaqxmffpyap6qgksfqs";
   };
 
   cargoSha256 = "1phv06zf47bv5cmhypivljfiynrblha0kj13c5al9l0hd1xx749h";
@@ -17,6 +17,14 @@ rustPlatform.buildRustPackage rec {
   buildInputs = with stdenv;
     lib.optionals isDarwin [ CoreFoundation libiconv libresolv Security ];
 
+  cargoPatches = [
+    # fix wrong version in Cargo.lock
+    (fetchpatch {
+      url = "https://github.com/o2sh/onefetch/commit/b69fe660d72b65d7efac99ac5db3b03a82d8667f.patch";
+      sha256 = "14przkdyd4yd11xpdgyscs70w9gpnh02j3xdzxf6h895w3mn84lx";
+    })
+  ];
+
   meta = with stdenv.lib; {
     description = "Git repository summary on your terminal";
     homepage = "https://github.com/o2sh/onefetch";