Unverified Commit c8b97b6c authored by Matthias Beyer's avatar Matthias Beyer Committed by GitHub
Browse files

Merge pull request #255164 from figsoda/systeroid

systeroid: 0.4.2 -> 0.4.3
parents de54eea1 9ee79f7b
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@

rustPlatform.buildRustPackage rec {
  pname = "systeroid";
  version = "0.4.2";
  version = "0.4.3";

  src = fetchFromGitHub {
    owner = "orhun";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-yEsDtjoV0NQPG/PJnVMBBMuPDBdK2kIfUWxtfkvRI04=";
    sha256 = "sha256-ZviZ8zjUtVv7PRH9xuiGi8OtAHX1oo6JmKHLCyk4Vog=";
  };

  postPatch = ''
@@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec {
      --replace '"/usr/share/doc/kernel-doc-*/Documentation/*",' '"${linux-doc}/share/doc/linux-doc/*",'
  '';

  cargoHash = "sha256-Plu7JxTFjLUXWLmIax/QPgq7QzdQd0vFinj+Gx03AQQ=";
  cargoHash = "sha256-xpE7cP8nISMuIqSO6o6VREsVXQ+K5PU+XUEVvl3k51s=";

  buildInputs = [
    xorg.libxcb
@@ -33,7 +33,8 @@ rustPlatform.buildRustPackage rec {
  meta = with lib; {
    description = "More powerful alternative to sysctl(8) with a terminal user interface";
    homepage = "https://github.com/orhun/systeroid";
    license = licenses.asl20;
    changelog = "https://github.com/orhun/systeroid/blob/${src.rev}/CHANGELOG.md";
    license = with licenses; [ asl20 mit ];
    maintainers = with maintainers; [ figsoda ];
  };
}