nixpkgs/pkgs/tools/X11/xrectsel/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
631 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libX11 }:
2017-01-09 06:07:25 +01:00
stdenv.mkDerivation rec {
pname = "xrectsel";
2017-01-09 06:07:25 +01:00
version = "0.3.2";
src = fetchFromGitHub {
2022-06-20 14:54:48 +02:00
owner = "ropery";
2017-01-09 06:07:25 +01:00
repo = "xrectsel";
2019-09-09 01:38:31 +02:00
rev = version;
2017-01-09 06:07:25 +01:00
sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libX11 ];
meta = with lib; {
2017-01-09 06:07:25 +01:00
description = "Print the geometry of a rectangular screen region";
2022-06-20 14:54:48 +02:00
homepage = "https://github.com/ropery/xrectsel";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ sikmir ];
2017-01-09 06:07:25 +01:00
platforms = platforms.linux;
};
}