nixpkgs/pkgs/tools/X11/go-sct/default.nix
Kamil Chmielewski 914e0e594c buildGoPackage: deps.json -> deps.nix in NIXON
https://github.com/NixOS/nixpkgs/pull/17254#issuecomment-245295541

* update docs to describe `deps.nix`
* include goDeps in nix-shell GOPATH
* NixOS 16.09 rel notes about replacing goPackages
2016-09-16 00:04:55 +01:00

27 lines
783 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.unix;
};
}