Files
nix-config/pkgs/kop-monitor/default.nix
2024-05-20 13:08:18 +02:00

21 lines
424 B
Nix

{ rustPlatform
, lib
, pkgs
, ...
}:
rustPlatform.buildRustPackage {
pname = "kop-monitor";
version = "1.0.0";
src = fetchGit {
url = "git@github.com:kropatz/monitor.git";
ref = "master";
rev = "0e460dd24f73e060acf9f16e84b45aea97781151";
};
nativeBuildInputs = with pkgs; [ pkg-config ];
buildInputs = with pkgs; [ openssl ];
cargoHash = "sha256-PI2bLMnT71JVeDZp/Es4jhwTPuSRvrz2j5wyNPLKkFY=";
}