chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / un / uni-sync / package.nix
blobde58c54deb4b7d0518e89bd525bf2bce892149d9
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 , pkg-config
5 , libudev-zero
6 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "uni-sync";
9   version = "0.2.0";
11   src = fetchFromGitHub {
12     owner = "EightB1ts";
13     repo = pname;
14     rev = "ca349942c06fabcc028ce24e79fc6ce7c758452b";
15     hash = "sha256-K2zX3rKtTaKO6q76xlxX+rDLL0gEsJ2l8x/s1vsp+ZQ=";
16   };
18   nativeBuildInputs = [ pkg-config ];
19   buildInputs = [ libudev-zero ];
21   patches = [
22     ./config_path.patch
23     ./ignore_read-only_filesystem.patch
24   ];
26   cargoHash = "sha256-DdmjP0h15cXkHJZxvOcINgoZ/EhTgu/7iYb+bgsIXxU=";
28   meta = with lib; {
29     description = "Synchronization tool for Lian Li Uni Controllers";
30     homepage = "https://github.com/EightB1ts/uni-sync";
31     license = licenses.mit;
32     maintainers = with maintainers; [ yunfachi ];
33     mainProgram = "uni-sync";
34   };