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

Commits on Jan 26, 2020

  1. procs: 0.9.0 -> 0.9.2

    marsam committed Jan 26, 2020
    Copy the full SHA
    e39afd4 View commit details

Commits on Jan 27, 2020

  1. Merge pull request #78548 from marsam/update-procs

    procs: 0.9.0 -> 0.9.2
    marsam authored Jan 27, 2020

    Unverified

    The email in this signature doesn’t match the committer email.
    Copy the full SHA
    25ad544 View commit details
Showing with 4 additions and 6 deletions.
  1. +4 −6 pkgs/tools/admin/procs/default.nix
10 changes: 4 additions & 6 deletions pkgs/tools/admin/procs/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
{ stdenv, fetchFromGitHub, rustPlatform, fetchpatch
, Security
}:
{ stdenv, fetchFromGitHub, rustPlatform, Security }:

rustPlatform.buildRustPackage rec {
pname = "procs";
version = "0.9.0";
version = "0.9.2";

src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
sha256 = "1lprxfy733rs39fg8yif3p8vz9szk7d529ahn1kn70zm8i3mqpch";
sha256 = "09n22vyqhqkk9qq91q44l8fi0ks0xyyhsxfsp9pdlnpng9s7hcdg";
};

cargoSha256 = "11l2dggvkk2vx4xap2q02qrr576i4mswf67plhg23azr43fpi0r5";
cargoSha256 = "135h7aikwy26p30g4734w08bfab73n49bhljssw516wd62xbdk64";

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