2017-01-09 05:07:25 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, libX11 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "xrectsel";
|
2017-01-09 05:07:25 +00:00
|
|
|
version = "0.3.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lolilolicon";
|
|
|
|
repo = "xrectsel";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2017-01-09 05:07:25 +00:00
|
|
|
sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libX11 ];
|
|
|
|
|
|
|
|
postBuild = ''
|
2017-03-03 11:57:24 +00:00
|
|
|
make install
|
2017-01-09 05:07:25 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|