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

Commits on Jan 23, 2020

  1. procs: 0.8.16 -> 0.9.0

    marsam committed Jan 23, 2020
    Copy the full SHA
    4dbba7a View commit details
  2. Merge pull request #78368 from marsam/update-procs

    procs: 0.8.16 -> 0.9.0
    marsam authored Jan 23, 2020
    Copy the full SHA
    a8c301e View commit details
Showing with 3 additions and 11 deletions.
  1. +3 −11 pkgs/tools/admin/procs/default.nix
14 changes: 3 additions & 11 deletions pkgs/tools/admin/procs/default.nix
Original file line number Diff line number Diff line change
@@ -4,27 +4,19 @@

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

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

cargoSha256 = "03c63dlzvag341n6la1s61ccri1avlprd91m11z9zzjhi9b46kcr";
cargoSha256 = "11l2dggvkk2vx4xap2q02qrr576i4mswf67plhg23azr43fpi0r5";

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

patches = [
# Fix tests on darwin. Remove with the next release
(fetchpatch {
url = "https://github.com/dalance/procs/commit/bb554e247b5b339bc00fa5dd2e771b0d7cb09cd5.patch";
sha256 = "1szvvifa4pdbgdsmdj5f0zq6qzf1lh6wwc6ipawblfzwmg7d9wvk";
})
];

meta = with stdenv.lib; {
description = "A modern replacement for ps written in Rust";
homepage = "https://github.com/dalance/procs";