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

Commits on Apr 20, 2020

  1. procs: 0.9.20 -> 0.10.0

    Br1ght0ne committed Apr 20, 2020
    Copy the full SHA
    7133c01 View commit details
  2. Merge pull request #85626 from filalex77/procs-0.10.0

    procs: 0.9.20 -> 0.10.0
    Mic92 authored Apr 20, 2020
    Copy the full SHA
    f349aca View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/admin/procs/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/admin/procs/default.nix
Original file line number Diff line number Diff line change
@@ -2,24 +2,24 @@

rustPlatform.buildRustPackage rec {
pname = "procs";
version = "0.9.20";
version = "0.10.0";

src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
sha256 = "00qqn8nwv791bs88n302hy67dpas5hcacnkakn7law567klnzxfz";
sha256 = "1bgsxvb9wxi4sz8jfamhdwaq9f2q2k7c3cdkk60k86mkmas8ibxz";
};

cargoSha256 = "09ib1nlqhzq3mc5wc16mgqbyr652asrwdpbwaax54fm1gd334prl";
cargoSha256 = "0zf41clf3rqxmal894gqp9fn9bnas99wna13fc43fxdlvh92v4yh";

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

meta = with stdenv.lib; {
description = "A modern replacement for ps written in Rust";
homepage = "https://github.com/dalance/procs";
license = licenses.mit;
maintainers = with maintainers; [ dalance filalex77 ];
maintainers = with maintainers; [ dalance filalex77 ];
platforms = with platforms; linux ++ darwin;
};
}