summary refs log tree commit diff
path: root/pkgs/tools/X11/go-sct/default.nix
blob: 197a7b80af362a6817527654d296efe89c58b2d9 (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
{ stdenv, lib, xorg, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "go-sct-${version}";
  version = "20160529-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "1d6b5e05a0b63bfeac9df55003efec352e1bc19d";

  goPackagePath = "github.com/d4l3k/go-sct";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/d4l3k/go-sct";
    sha256 = "1iqdagrq0j7sqxgsj31skgk73k2rbpbvj41v087af9103wf8h9z7";
  };

  goDeps = ./deps.json;

  buildInputs = [ xorg.libX11 xorg.libXrandr ];

  meta = with stdenv.lib; {
    description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift";
    license = licenses.mit;
    maintainers = with maintainers; [ cstrahan ];
    platforms = platforms.unix;
  };
}