killport: switch to bindgenHook

This commit is contained in:
Weijia Wang 2023-05-24 23:48:09 +03:00
parent db38340b4d
commit 6a2e8c6119

View file

@ -1,8 +1,8 @@
{ lib { lib
, rustPlatform , rustPlatform
, fetchCrate , fetchCrate
, llvmPackages
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "killport"; pname = "killport";
version = "0.8.0"; version = "0.8.0";
@ -12,9 +12,9 @@ rustPlatform.buildRustPackage rec {
hash = "sha256-ip7Ndy4i4P6n20COfSL/EtG1Y+xoab8Gox4gcNHH1/o="; hash = "sha256-ip7Ndy4i4P6n20COfSL/EtG1Y+xoab8Gox4gcNHH1/o=";
}; };
cargoSha256 = "sha256-M4riyvGueCQDKOj+lgYPm2lZ8UjCp1y/SyG692vZbS4="; cargoHash = "sha256-M4riyvGueCQDKOj+lgYPm2lZ8UjCp1y/SyG692vZbS4=";
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib"; nativeBuildInputs = [ rustPlatform.bindgenHook ];
meta = with lib; { meta = with lib; {
description = "A command-line tool to easily kill processes running on a specified port"; description = "A command-line tool to easily kill processes running on a specified port";