summary refs log tree commit diff
path: root/pkgs/tools/X11/go-sct/default.nix
blob: 585e28971b4919d33235b60f1ec5a075d52fdb76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib, buildGoModule, fetchFromGitHub, xorg, wayland }:

buildGoModule rec {
  pname = "go-sct";
  version = "unstable-2022-01-32";

  src = fetchFromGitHub {
    owner = "d4l3k";
    repo = "go-sct";
    rev = "4ae88a6bf50e0b917541ddbcec1ff10ab77a0b15";
    sha256 = "sha256-/0ilM1g3CNaseqV9i+cKWyzxvWnj+TFqazt+aYDtNVs=";
  };

  postPatch = ''
    # Disable tests require network access
    rm -f geoip/geoip_test.go
  '';

  vendorHash = "sha256-Rx5/oORink2QtRcD+JqbyFroWYhuYmuYDzZ391R4Jsw=";

  buildInputs = [ xorg.libX11 xorg.libXrandr wayland.dev ];

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift";
    homepage = "https://github.com/d4l3k/go-sct";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
    mainProgram = "sct";
  };
}