biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / X11 / go-sct / default.nix
blob71c1c77fd9d3f6ce1853776b857bf840568fd4e7
1 { lib, buildGoModule, fetchFromGitHub, xorg, wayland }:
3 buildGoModule rec {
4   pname = "go-sct";
5   version = "unstable-2022-01-32";
7   src = fetchFromGitHub {
8     owner = "d4l3k";
9     repo = "go-sct";
10     rev = "4ae88a6bf50e0b917541ddbcec1ff10ab77a0b15";
11     hash = "sha256-/0ilM1g3CNaseqV9i+cKWyzxvWnj+TFqazt+aYDtNVs=";
12   };
14   postPatch = ''
15     # Disable tests require network access
16     rm -f geoip/geoip_test.go
17   '';
19   vendorHash = "sha256-Rx5/oORink2QtRcD+JqbyFroWYhuYmuYDzZ391R4Jsw=";
21   buildInputs = [ xorg.libX11 xorg.libXrandr wayland.dev ];
23   ldflags = [ "-s" "-w" ];
25   meta = with lib; {
26     description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift";
27     homepage = "https://github.com/d4l3k/go-sct";
28     license = licenses.mit;
29     maintainers = [ ];
30     platforms = platforms.linux;
31     mainProgram = "sct";
32   };