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

Commits on Apr 8, 2020

  1. kmon: 1.0.0 -> 1.0.1

    misuzu committed Apr 8, 2020
    Copy the full SHA
    44e56c2 View commit details

Commits on Apr 9, 2020

  1. Merge pull request #84729 from misuzu/kmon-update

    kmon: 1.0.0 -> 1.0.1
    marsam authored Apr 9, 2020
    Copy the full SHA
    5298219 View commit details
Showing with 7 additions and 3 deletions.
  1. +7 −3 pkgs/tools/system/kmon/default.nix
10 changes: 7 additions & 3 deletions pkgs/tools/system/kmon/default.nix
Original file line number Diff line number Diff line change
@@ -2,21 +2,25 @@

rustPlatform.buildRustPackage rec {
pname = "kmon";
version = "1.0.0";
version = "1.0.1";

src = fetchFromGitHub {
owner = "orhun";
repo = pname;
rev = "v${version}";
sha256 = "1zsgyigr6k0zqhhv0icpvvfij7r7fj0l2f77i5zh1vyb89pni50h";
sha256 = "0kmkcs13cccmjjfbl25bs3m54zcjcs38fiv84q0vy09a4dnx3gn8";
};

cargoSha256 = "15lj6ryll24xdmv8gil04prhcri2d3b1rxqjrwx70blfrlvvhxa8";
cargoSha256 = "0l1yq9k6lyk0ww1nzk93axylgrwipkmmqh9r6fq4a31wjlblrkkb";

nativeBuildInputs = [ python3 ];

buildInputs = [ libxcb ];

postInstall = ''
install -D man/kmon.8 -t $out/share/man/man8/
'';

meta = with stdenv.lib; {
description = "Linux Kernel Manager and Activity Monitor";
homepage = "https://github.com/orhun/kmon";