chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / os-specific / darwin / plistwatch / default.nix
blob0c99363510c86f3754142847036095a5acbb308a
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "plistwatch";
8   version = "unstable-2023-06-22";
10   src = fetchFromGitHub {
11     owner = "catilac";
12     repo = "plistwatch";
13     rev = "34d808c1509eea22fe88a2dbb6f0a1669a2a5b23";
14     hash = "sha256-kMHi5xKbiwO+/6Eb8oJz7ECoUybFE+IUDz7VfJueB3g=";
15   };
17   vendorHash = "sha256-Layg1axFN86OFgxEyNFtIlm6Jtx317jZb/KH6IjJ8e4=";
19   #add missing dependencies and hashes
20   patches = [ ./go-modules.patch ];
22   doCheck = false;
24   meta = with lib; {
25     description = "Monitors and prints changes to MacOS plists in real time";
26     homepage = "https://github.com/catilac/plistwatch";
27     maintainers = with maintainers; [ gdinh ];
28     license = licenses.mit;
29     platforms = platforms.darwin;
30   };