summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJames Kay <twey@twey.co.uk>2018-05-31 18:24:30 +0100
committerxeji <36407913+xeji@users.noreply.github.com>2018-05-31 19:24:30 +0200
commit9d99fcf8a14571749c75d33d4c93119a43cfcb20 (patch)
tree0b89687eb42eb6950d06795aa2261bedd4d52123 /pkgs
parentd38d1ed44f44da5481d7a010a113056c6ec09299 (diff)
downloadnixlib-9d99fcf8a14571749c75d33d4c93119a43cfcb20.tar
nixlib-9d99fcf8a14571749c75d33d4c93119a43cfcb20.tar.gz
nixlib-9d99fcf8a14571749c75d33d4c93119a43cfcb20.tar.bz2
nixlib-9d99fcf8a14571749c75d33d4c93119a43cfcb20.tar.lz
nixlib-9d99fcf8a14571749c75d33d4c93119a43cfcb20.tar.xz
nixlib-9d99fcf8a14571749c75d33d4c93119a43cfcb20.tar.zst
nixlib-9d99fcf8a14571749c75d33d4c93119a43cfcb20.zip
compton-git: 2016-08-10 -> 2018-05-21 (#41317)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/window-managers/compton/git.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/applications/window-managers/compton/git.nix b/pkgs/applications/window-managers/compton/git.nix
index 53bcd158aedd..dd2559d2b15c 100644
--- a/pkgs/applications/window-managers/compton/git.nix
+++ b/pkgs/applications/window-managers/compton/git.nix
@@ -3,14 +3,15 @@
   pkgconfig, libXcomposite, libXdamage, libXext, libXfixes, libXinerama,
   libXrandr, libXrender, xwininfo }:
 
-stdenv.mkDerivation {
-  name = "compton-git-2016-08-10";
+stdenv.mkDerivation rec {
+  name = "compton-git-${version}";
+  version = "2018-05-21";
 
   src = fetchFromGitHub {
-    owner  = "chjj";
+    owner  = "yshui";
     repo   = "compton";
-    rev    = "f1cd308cde0f1e1f21ec2ac8f16a3c873fa22d3a";
-    sha256 = "1ky438d1rsg4ylkcp60m82r0jck8rks3gfa869rc63k37p2nfn8p";
+    rev    = "9b24550814b7c69065f90039b0a5d0a2281b9f81";
+    sha256 = "09nn0q9lgv59chfxljips0n8vnwwxi1yz6hmcsiggsl3zvpabpxl";
   };
 
   nativeBuildInputs = [
@@ -44,7 +45,7 @@ stdenv.mkDerivation {
   meta = with stdenv.lib; {
     description =
       "A fork of XCompMgr, a sample compositing manager for X servers (git version)";
-    homepage = https://github.com/chjj/compton/;
+    homepage = https://github.com/yshui/compton/;
     license = licenses.mit;
     longDescription = ''
       A fork of XCompMgr, which is a sample compositing manager for X
@@ -53,7 +54,7 @@ stdenv.mkDerivation {
       additional features, such as additional effects, and a fork at a
       well-defined and proper place.
     '';
-    maintainers = [ maintainers.ertes ];
+    maintainers = [ maintainers.ertes maintainers.twey ];
     platforms = platforms.linux;
   };
 }