94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
38 lines
986 B
Nix
38 lines
986 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, rustPlatform
|
|
, pkg-config
|
|
, openssl
|
|
, libgit2
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "klipper-estimator";
|
|
version = "3.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Annex-Engineering";
|
|
repo = "klipper_estimator";
|
|
rev = "v${version}";
|
|
hash = "sha256-bWKR7+eX7tcc9KywKIg6CY+3qALPqOSSiSSlK44iTDQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-cPdFRBU8B4C2el9N069QooiJdpopns8RJEyavemYdUc=";
|
|
|
|
buildInputs =
|
|
[ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ libgit2 Security ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for determining the time a print will take using the Klipper firmware";
|
|
homepage = "https://github.com/Annex-Engineering/klipper_estimator";
|
|
changelog = "https://github.com/Annex-Engineering/klipper_estimator/releases/tag/v${version}";
|
|
mainProgram = "klipper_estimator";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tmarkus ];
|
|
};
|
|
}
|