tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
xrectsel: fix download url
Nikolay Korotkiy
3 years ago
16478032
b7dc3d66
+4
-8
1 changed file
expand all
collapse all
unified
split
pkgs
tools
X11
xrectsel
default.nix
+4
-8
pkgs/tools/X11/xrectsel/default.nix
···
5
5
version = "0.3.2";
6
6
7
7
src = fetchFromGitHub {
8
8
-
owner = "lolilolicon";
8
8
+
owner = "ropery";
9
9
repo = "xrectsel";
10
10
rev = version;
11
11
sha256 = "0prl4ky3xzch6xcb673mcixk998d40ngim5dqc5374b1ls2r6n7l";
···
13
13
14
14
nativeBuildInputs = [ autoreconfHook ];
15
15
buildInputs = [ libX11 ];
16
16
-
17
17
-
postBuild = ''
18
18
-
make install
19
19
-
'';
20
16
21
17
meta = with lib; {
22
18
description = "Print the geometry of a rectangular screen region";
23
23
-
homepage = "https://github.com/lolilolicon/xrectsel";
24
24
-
license = licenses.gpl3;
25
25
-
maintainers = [ maintainers.guyonvarch ];
19
19
+
homepage = "https://github.com/ropery/xrectsel";
20
20
+
license = licenses.gpl3Plus;
21
21
+
maintainers = with maintainers; [ sikmir ];
26
22
platforms = platforms.linux;
27
23
};
28
24
}