mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
Merge pull request #48309 from rvolosatovs/update/go-sct
go-sct: 20160529 -> 20180605
This commit is contained in:
commit
91336f08c4
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue