571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
34 lines
887 B
Nix
34 lines
887 B
Nix
{ lib, buildGoModule, fetchFromGitHub, xorg, wayland }:
|
|
|
|
buildGoModule rec {
|
|
pname = "go-sct";
|
|
version = "unstable-2022-01-32";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "d4l3k";
|
|
repo = "go-sct";
|
|
rev = "4ae88a6bf50e0b917541ddbcec1ff10ab77a0b15";
|
|
hash = "sha256-/0ilM1g3CNaseqV9i+cKWyzxvWnj+TFqazt+aYDtNVs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Disable tests require network access
|
|
rm -f geoip/geoip_test.go
|
|
'';
|
|
|
|
vendorHash = "sha256-Rx5/oORink2QtRcD+JqbyFroWYhuYmuYDzZ391R4Jsw=";
|
|
|
|
buildInputs = [ xorg.libX11 xorg.libXrandr wayland.dev ];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift";
|
|
homepage = "https://github.com/d4l3k/go-sct";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "sct";
|
|
};
|
|
}
|