summary refs log tree commit diff
path: root/pkgs/tools/X11/xrectsel
diff options
context:
space:
mode:
authorNikolay Korotkiy <sikmir@disroot.org>2022-06-20 15:54:48 +0300
committerNikolay Korotkiy <sikmir@disroot.org>2022-07-12 12:50:43 +0300
commit164780329f02fe35c8ffece9006129f8e5ffb03e (patch)
tree328fb7b5992a7e5f59ef18ca284e2702aa35f0f2 /pkgs/tools/X11/xrectsel
parentb7dc3d66c2ea779c7d82ca7199800f03c5b16759 (diff)
downloadnixpkgs-164780329f02fe35c8ffece9006129f8e5ffb03e.tar
nixpkgs-164780329f02fe35c8ffece9006129f8e5ffb03e.tar.gz
nixpkgs-164780329f02fe35c8ffece9006129f8e5ffb03e.tar.bz2
nixpkgs-164780329f02fe35c8ffece9006129f8e5ffb03e.tar.lz
nixpkgs-164780329f02fe35c8ffece9006129f8e5ffb03e.tar.xz
nixpkgs-164780329f02fe35c8ffece9006129f8e5ffb03e.tar.zst
nixpkgs-164780329f02fe35c8ffece9006129f8e5ffb03e.zip
xrectsel: fix download url
Diffstat (limited to 'pkgs/tools/X11/xrectsel')
-rw-r--r--pkgs/tools/X11/xrectsel/default.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/tools/X11/xrectsel/default.nix b/pkgs/tools/X11/xrectsel/default.nix
index 0189e52ede9..8b37a679242 100644
--- a/pkgs/tools/X11/xrectsel/default.nix
+++ b/pkgs/tools/X11/xrectsel/default.nix
@@ -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;
   };
 }