nixpkgs/pkgs/tools/X11/go-sct/default.nix
Orivej Desh 45a85eaceb go-sct: disable on Darwin
It does not support Darwin.
2017-11-25 07:35:44 +00:00

27 lines
784 B
Nix

{ 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.nix;
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.linux;
};
}