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: a52b343b3971
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 79d04a7cdb2c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 11, 2020

  1. onefetch: 2.7.0 -> 2.7.1

    r-ryantm authored and Jonathan Ringer committed Nov 11, 2020
    Copy the full SHA
    79d04a7 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/onefetch/default.nix
6 changes: 3 additions & 3 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.7.0";
version = "2.7.1";

src = fetchFromGitHub {
owner = "o2sh";
repo = pname;
rev = "v${version}";
sha256 = "sha256-9HZLr/dwr5T1m6H/SHy9ULfKMkyrLNb2Z8W3RlSWzGM=";
sha256 = "1l4acikxkxvmdqn10ck4w4f100vz7kfrzghz5h4haj7ycrr35j3l";
};

cargoSha256 = "sha256-cyffVX1XEF5zaNbk/VeZEtKG/Npwv5Yzz9OU5G9UyGc=";
cargoSha256 = "0rmy0jnf5rqd4dqyl6rinxb3n3rzqnixrybs4i27lcas9m753z40";

buildInputs = with stdenv;
lib.optionals isDarwin [ CoreFoundation libiconv libresolv Security ];