xrectsel: fix download url

This commit is contained in:
Nikolay Korotkiy 2022-06-20 15:54:48 +03:00
parent b7dc3d66c2
commit 164780329f
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "0.3.2";
src = fetchFromGitHub {
owner = "lolilolicon";
owner = "ropery";
repo = "xrectsel";
rev = version;
sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l";
@ -14,15 +14,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libX11 ];
postBuild = ''
make install
'';
meta = with lib; {
description = "Print the geometry of a rectangular screen region";
homepage = "https://github.com/lolilolicon/xrectsel";
license = licenses.gpl3;
maintainers = [ maintainers.guyonvarch ];
homepage = "https://github.com/ropery/xrectsel";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.linux;
};
}