mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
41 lines
830 B
Nix
41 lines
830 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "screentest";
|
|
version = "3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TobiX";
|
|
repo = "screentest";
|
|
rev = "refs/tags/${finalAttrs.version}";
|
|
hash = "sha256-dbag1EAD+6+srfu/eqSl3CWlZtSopioQjyBQRJcUggA=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
meta = {
|
|
description = "Simple screen testing tool";
|
|
mainProgram = "screentest";
|
|
homepage = "https://github.com/TobiX/screentest";
|
|
changelog = "https://github.com/TobiX/screentest/blob/${finalAttrs.version}/NEWS";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ evils ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|