22 lines
429 B
Nix
22 lines
429 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-xQBAFdwYmwEbH14GAHyboBfJu8kuI+7oOUvHe4N++RI=";
|
|
}
|