biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / klipper-estimator / default.nix
blobe7a511769a8eb9e4027de48a51a6848fd483026e
1 { lib
2 , fetchFromGitHub
3 , stdenv
4 , rustPlatform
5 , pkg-config
6 , openssl
7 , libgit2
8 , Security
9 , SystemConfiguration
12 rustPlatform.buildRustPackage rec {
13   pname = "klipper-estimator";
14   version = "3.7.3";
16   src = fetchFromGitHub {
17     owner = "Annex-Engineering";
18     repo = "klipper_estimator";
19     rev = "v${version}";
20     hash = "sha256-EjfW2qeq0ehGhjE2Psz5g/suYMZPvtQi2gaYb+NCa2U=";
21   };
23   cargoHash = "sha256-bboXG2nBrK2hVzB43um6EUgLPlSa8huyPH7VOJ48Nkk=";
25   buildInputs =
26     [ openssl ]
27     ++ lib.optionals stdenv.hostPlatform.isDarwin [ libgit2 Security SystemConfiguration ];
29   nativeBuildInputs = [ pkg-config ];
31   meta = with lib; {
32     description = "Tool for determining the time a print will take using the Klipper firmware";
33     homepage = "https://github.com/Annex-Engineering/klipper_estimator";
34     changelog = "https://github.com/Annex-Engineering/klipper_estimator/releases/tag/v${version}";
35     mainProgram = "klipper_estimator";
36     license = licenses.mit;
37     maintainers = with maintainers; [ tmarkus ];
38   };