chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / xs / xsct / package.nix
blob20bcbd76f71ed5c23b3f9093c5cec415c9e7ebc4
1 { stdenv
2 , lib
3 , fetchFromGitHub
4 , gitUpdater
5 , libX11
6 , libXrandr
7 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "xsct";
11   version = "2.3";
13   src = fetchFromGitHub {
14     owner = "faf0";
15     repo = "sct";
16     rev = "refs/tags/${finalAttrs.version}";
17     hash = "sha256-L93Gk7/jcRoUWogWhrOiBvWCCj+EbyGKxBR5oOVjPPU=";
18   };
20   buildInputs = [
21     libX11
22     libXrandr
23   ];
25   makeFlags = [
26     "PREFIX=${placeholder "out"}"
27   ];
29   passthru.updateScript = gitUpdater { };
31   meta = with lib; {
32     description = "Set color temperature of screen";
33     mainProgram = "xsct";
34     homepage = "https://github.com/faf0/sct";
35     changelog = "https://github.com/faf0/sct/blob/${finalAttrs.version}/CHANGELOG";
36     license = licenses.unlicense;
37     maintainers = with maintainers; [ OPNA2608 ];
38     platforms = with platforms; linux ++ freebsd ++ openbsd;
39   };