Skip to content

Commit

Permalink
Merge pull request #336472 from GaetanLepage/bunbun
Browse files Browse the repository at this point in the history
bunbun: 1.3.0 -> 1.4.0
  • Loading branch information
drupol committed Aug 22, 2024
2 parents 3caaa2f + 31ab01f commit 8fe18a3
Showing 1 changed file with 30 additions and 17 deletions.
47 changes: 30 additions & 17 deletions pkgs/by-name/bu/bunbun/package.nix
Original file line number Diff line number Diff line change
@@ -1,35 +1,48 @@
{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, darwin
{
lib,
rustPlatform,
fetchFromGitHub,
stdenv,
darwin,
nix-update-script,
testers,
bunbun,
}:

rustPlatform.buildRustPackage rec {
pname = "bunbun";
version = "1.3.0";
version = "1.4.0";

src = fetchFromGitHub {
owner = "devraza";
repo = "bunbun";
rev = "refs/tags/v${version}";
hash = "sha256-jqokKvJYu/xHJHJVuNlTns3cYPLx1osbRUrCpVTCJZ0=";
# TODO: remove '-bump' at next release
rev = "refs/tags/v${version}-bump";
hash = "sha256-r4xBUfNY+Q3uAC919ZQbIDgiF981FVqZCOT8XNojZP4=";
};

cargoHash = "sha256-dWZ5aNaHyTkEmkn88Dx5nCnGyiBmpJ6p5iYC7xj/mBw=";
cargoHash = "sha256-CcGfaSyCMv0Wm4QsYASBwEnpX8fKbLHRqyEcUmj2w2o=";

buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.IOKit
darwin.apple_sdk.frameworks.SystemConfiguration
];
buildInputs = lib.optionals stdenv.isDarwin (
with darwin.apple_sdk.frameworks;
[
CoreFoundation
IOKit
SystemConfiguration
]
);

meta = with lib; {
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion { package = bunbun; };
};

meta = {
description = "Simple and adorable sysinfo utility written in Rust";
homepage = "https://github.com/devraza/bunbun";
changelog = "https://github.com/devraza/bunbun/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
mainProgram = "bunbun";
};
}

0 comments on commit 8fe18a3

Please sign in to comment.