evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sc / screentest / package.nix
blobdf4922afb922420cdf50c5f1e2f072e3b8431206
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   meson,
6   ninja,
7   pkg-config,
8   wrapGAppsHook3,
9 }:
11 stdenv.mkDerivation (finalAttrs: {
12   pname = "screentest";
13   version = "3.0";
15   src = fetchFromGitHub {
16     owner = "TobiX";
17     repo = "screentest";
18     rev = "refs/tags/${finalAttrs.version}";
19     hash = "sha256-dbag1EAD+6+srfu/eqSl3CWlZtSopioQjyBQRJcUggA=";
20   };
22   strictDeps = true;
24   nativeBuildInputs = [
25     meson
26     ninja
27     pkg-config
28     wrapGAppsHook3
29   ];
31   meta = {
32     description = "Simple screen testing tool";
33     mainProgram = "screentest";
34     homepage = "https://github.com/TobiX/screentest";
35     changelog = "https://github.com/TobiX/screentest/blob/${finalAttrs.version}/NEWS";
36     license = lib.licenses.gpl2Only;
37     maintainers = with lib.maintainers; [ evils ];
38     platforms = lib.platforms.unix;
39   };