nixpkgs/pkgs/tools/X11/go-sct/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
905 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, xorg, wayland }:
2016-06-03 12:25:31 +00:00
buildGoModule rec {
pname = "go-sct";
version = "unstable-2022-01-32";
2016-06-03 12:25:31 +00:00
2018-10-13 08:44:56 +00:00
src = fetchFromGitHub {
owner = "d4l3k";
repo = "go-sct";
rev = "4ae88a6bf50e0b917541ddbcec1ff10ab77a0b15";
2023-11-20 14:06:15 +00:00
hash = "sha256-/0ilM1g3CNaseqV9i+cKWyzxvWnj+TFqazt+aYDtNVs=";
2016-06-03 12:25:31 +00:00
};
postPatch = ''
# Disable tests require network access
rm -f geoip/geoip_test.go
'';
vendorHash = "sha256-Rx5/oORink2QtRcD+JqbyFroWYhuYmuYDzZ391R4Jsw=";
buildInputs = [ xorg.libX11 xorg.libXrandr wayland.dev ];
2016-06-03 12:25:31 +00:00
ldflags = [ "-s" "-w" ];
2016-06-03 12:25:31 +00:00
meta = with lib; {
2016-06-03 12:25:31 +00:00
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";
2016-06-03 12:25:31 +00:00
license = licenses.mit;
maintainers = with maintainers; [ ];
2023-11-20 14:06:15 +00:00
platforms = platforms.linux;
mainProgram = "sct";
2016-06-03 12:25:31 +00:00
};
}