summary refs log tree commit diff
path: root/pkgs/applications/window-managers/picom/picom-next.nix
blob: 88b00c2731db9fdd1683d9564f6d1783c22567a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ picom, lib, fetchFromGitHub }:

picom.overrideAttrs (oldAttrs: rec {
  pname = "picom-next";
  version = "unstable-2021-11-19";
  src = fetchFromGitHub {
    owner = "yshui";
    repo = "picom";
    rev = "1c7a4ff5a3cd5f3e25abcac0196896eea5939dce";
    sha256 = "sha256-2uy2ofXhEWKuM+nEUqU16c85UGt6fJGtPZj+az907aw=";
  };
  meta.maintainers = with lib.maintainers; oldAttrs.meta.maintainers ++ [ GKasparov ];
})