Skip to content

Commit

Permalink
Merge pull request #261683 from srid/nix-health
Browse files Browse the repository at this point in the history
nix-health: init at 0.2.3
  • Loading branch information
Mindavi committed Oct 28, 2023
2 parents 2fd6af1 + fc1031b commit f36961c
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/by-name/ni/nix-health/package.nix
@@ -0,0 +1,38 @@
{ lib, stdenv
, rustPlatform
, fetchCrate
, libiconv
, openssl
, pkg-config
, darwin
}:

rustPlatform.buildRustPackage rec {
pname = "nix-health";
version = "0.2.3";

src = fetchCrate {
inherit version;
pname = "nix_health";
hash = "sha256-WdzzEFk9VPld6AFTNRsaQbMymw1+mNn/TViGO/Qv0so=";
};

cargoHash = "sha256-xmuosy9T/52D90uXMQAIxtaYDOlCekNCtzpu/3GyQXE=";

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.isDarwin (with darwin.apple_sdk_11_0.frameworks;
[ IOKit
CoreFoundation
]);

meta = with lib; {
description = "Check the health of your Nix setup";
homepage = "https://zero-to-flakes.com/health/";
license = licenses.asl20;
maintainers = with maintainers; [ srid ];
mainProgram = "nix-health";
};
}

0 comments on commit f36961c

Please sign in to comment.