1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

go-sct: 20160529 -> 20180605

This commit is contained in:
Roman Volosatovs 2018-10-13 10:44:56 +02:00
parent 53255e2ab7
commit 95db49f5c3
No known key found for this signature in database
GPG key ID: 3AC661943D80C89E

View file

@ -1,16 +1,17 @@
{ stdenv, xorg, buildGoPackage, fetchgit }:
{ stdenv, xorg, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "go-sct-${version}";
version = "20160529-${stdenv.lib.strings.substring 0 7 rev}";
rev = "1d6b5e05a0b63bfeac9df55003efec352e1bc19d";
version = "20180605-${stdenv.lib.strings.substring 0 7 rev}";
rev = "eb1e851f2d5017038d2b8e3653645c36d3a279f4";
goPackagePath = "github.com/d4l3k/go-sct";
src = fetchgit {
src = fetchFromGitHub {
inherit rev;
url = "https://github.com/d4l3k/go-sct";
sha256 = "1iqdagrq0j7sqxgsj31skgk73k2rbpbvj41v087af9103wf8h9z7";
owner = "d4l3k";
repo = "go-sct";
sha256 = "16z2ml9x424cnliazyxlw7pm7q64pppjam3dnmq2xab0wlbbm3nm";
};
goDeps = ./deps.nix;
@ -20,7 +21,7 @@ buildGoPackage rec {
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;
maintainers = with maintainers; [ rvolosatovs cstrahan ];
platforms = platforms.linux ++ platforms.windows;
};
}