Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ca3f3897e9c5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 91336f08c45e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 13, 2018

  1. Copy the full SHA
    95db49f View commit details
  2. Merge pull request #48309 from rvolosatovs/update/go-sct

    go-sct: 20160529 -> 20180605
    Mic92 authored Oct 13, 2018
    Copy the full SHA
    91336f0 View commit details
Showing with 9 additions and 8 deletions.
  1. +9 −8 pkgs/tools/X11/go-sct/default.nix
17 changes: 9 additions & 8 deletions pkgs/tools/X11/go-sct/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}