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: 58c76844d7af
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f2e91928202f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 4, 2020

  1. procs: 0.10.4 -> 0.10.5

    r-ryantm committed Nov 4, 2020
    Copy the full SHA
    d06be7f View commit details
  2. Merge pull request #102714 from r-ryantm/auto-update/procs

    procs: 0.10.4 -> 0.10.5
    marsam authored Nov 4, 2020
    Copy the full SHA
    f2e9192 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/admin/procs/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/admin/procs/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "procs";
version = "0.10.4";
version = "0.10.5";

src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
sha256 = "1a28kkxcrdfmrq2mmsfkdxfp3msklwga5nbfhjb7a7s64xh8jmjv";
sha256 = "0w6a8pfk5s30yi5038kdqh4dncx2pskm7a23z66c4xj3842ci79c";
};

cargoSha256 = "1xlxjr0pkwlzm7f5xlrsf76in28r9jj41n6gn44vxqbh4x161gs1";
cargoSha256 = "07fwznx2czk1ibb77xcfhma9dpqps0m7rsmbb90gah6f32gah617";

buildInputs = stdenv.lib.optional stdenv.isDarwin Security;