Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c39c242e69e1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4cacea5a1687
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 4, 2020

  1. onefetch: 2.5.0 -> 2.6.0

    kloenk committed Nov 4, 2020
    Copy the full SHA
    c4384a1 View commit details
  2. Merge pull request #102811 from Kloenk/onefetch_2_6

    onefetch: 2.5.0 -> 2.6.0
    Ericson2314 authored Nov 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4cacea5 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/misc/onefetch/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/misc/onefetch/default.nix
Original file line number Diff line number Diff line change
@@ -3,16 +3,16 @@

rustPlatform.buildRustPackage rec {
pname = "onefetch";
version = "2.5.0";
version = "2.6.0";

src = fetchFromGitHub {
owner = "o2sh";
repo = pname;
rev = "v${version}";
sha256 = "sha256-F1NbzcMoct0mjWKY2itz4cBqVToY7HpoaRzk3l683fY=";
sha256 = "sha256-KdPr/6wGyoHhEwfPektL+B1khyoRfxDHI4aFcKNU0TM=";
};

cargoSha256 = "sha256-eBY+34VEPEAv5bqerxR3i7cJrVb1GtvmWyrM7uuef2E=";
cargoSha256 = "sha256-MLlGz7Sid0G52//XekqkZgzLqFL7xoUwT6OvpaF4jm0=";

buildInputs = with stdenv;
lib.optionals isDarwin [ CoreFoundation libiconv libresolv Security ];
@@ -21,6 +21,6 @@ rustPlatform.buildRustPackage rec {
description = "Git repository summary on your terminal";
homepage = "https://github.com/o2sh/onefetch";
license = licenses.mit;
maintainers = with maintainers; [ filalex77 ];
maintainers = with maintainers; [ filalex77 kloenk ];
};
}