summary refs log tree commit diff
path: root/pkgs/tools/X11/xrectsel/default.nix
blob: 4712192eacff3027242949f0e88b520d1beb6a8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitHub, autoreconfHook, libX11 }:

stdenv.mkDerivation rec {
  pname = "xrectsel";
  version = "0.3.2";

  src = fetchFromGitHub {
    owner = "lolilolicon";
    repo = "xrectsel";
    rev = version;
    sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l";
  };

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ libX11 ];

  postBuild = ''
    make install
  '';

  meta = with stdenv.lib; {
    description = "Print the geometry of a rectangular screen region";
    homepage = https://github.com/lolilolicon/xrectsel;
    license = licenses.gpl3;
    maintainers = [ maintainers.guyonvarch ];
    platforms = platforms.linux;
  };
}