nixpkgs/pkgs/by-name/ni/nix-health/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
993 B
Nix
Raw Normal View History

2023-10-17 18:07:09 +00:00
{ lib, stdenv
, rustPlatform
, fetchCrate
, libiconv
, openssl
, pkg-config
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "nix-health";
2024-07-12 03:06:20 +00:00
version = "0.4.0";
2023-10-17 18:07:09 +00:00
src = fetchCrate {
inherit version;
pname = "nix_health";
2024-07-12 03:06:20 +00:00
hash = "sha256-/I6LdcH61wgJOEv51J1jkWlD8BlSAaRR1e7gc5H9bQI=";
2023-10-17 18:07:09 +00:00
};
2024-07-12 03:06:20 +00:00
cargoHash = "sha256-mqJA5Fv/sYj6ZkE73emtaHvg9hdT/5lN0kM3sl+GRCo=";
2023-10-17 18:07:09 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libiconv openssl ]
# Use a newer SDK for CoreFoundation, because the sysinfo crate requires
# it, https://github.com/GuillaumeGomez/sysinfo/issues/915
++ lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk_11_0.frameworks;
[ IOKit
CoreFoundation
]);
meta = with lib; {
description = "Check the health of your Nix setup";
homepage = "https://github.com/juspay/nix-health";
2023-10-17 18:07:09 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ srid shivaraj-bh ];
2023-10-17 18:07:09 +00:00
mainProgram = "nix-health";
};
}