Skip to content

Commit

Permalink
nix-health: init at 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sridhar Ratnakumar committed Oct 17, 2023
1 parent cb44be3 commit 6da0465
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pkgs/by-name/ni/nix-health/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{ 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 ]
++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks;
[ IOKit ]);

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 6da0465

Please sign in to comment.