mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
43 lines
903 B
Nix
43 lines
903 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, intltool
|
|
, pkg-config
|
|
, gtk2
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "screentest";
|
|
version = "unstable-2021-05-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TobiX";
|
|
repo = "screentest";
|
|
rev = "780e6cbbbbd6ba93e246e7747fe593b40c4e2747";
|
|
hash = "sha256-TJ47c77vQ/aRBJ2uEiFLuAR4dd4CMEo+iAAx0HCFbmA=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
intltool
|
|
pkg-config
|
|
gtk2 # for autoconf macros
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk2
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple screen testing tool";
|
|
mainProgram = "screentest";
|
|
homepage = "https://github.com/TobiX/screentest";
|
|
changelog = "https://github.com/TobiX/screentest/blob/${finalAttrs.src.rev}/NEWS";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ evils ];
|
|
platforms = platforms.unix;
|
|
};
|
|
})
|