nixpkgs/pkgs/tools/X11/xrectsel/default.nix
2022-07-12 12:50:43 +03:00

25 lines
631 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libX11 }:
stdenv.mkDerivation rec {
pname = "xrectsel";
version = "0.3.2";
src = fetchFromGitHub {
owner = "ropery";
repo = "xrectsel";
rev = version;
sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libX11 ];
meta = with lib; {
description = "Print the geometry of a rectangular screen region";
homepage = "https://github.com/ropery/xrectsel";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.linux;
};
}