mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
picom-allusive: init for 0.3.1
This commit is contained in:
parent
acf6f9c869
commit
0b55e764ad
24
pkgs/applications/window-managers/picom/picom-allusive.nix
Normal file
24
pkgs/applications/window-managers/picom/picom-allusive.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ picom, lib, fetchFromGitHub }:
|
||||
|
||||
picom.overrideAttrs (oldAttrs: rec {
|
||||
pname = "picom-allusive";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "allusive-dev";
|
||||
repo = "picom-allusive";
|
||||
rev = version;
|
||||
hash = "sha256-lk4Ll0mi9h3BAqwgOzFQw4WYKnSW9XTl3PjoK2E4WKg=";
|
||||
};
|
||||
|
||||
postInstall = ''
|
||||
chmod +x $out/bin/picom-trans
|
||||
'' + (lib.optionalString (oldAttrs ? postInstall) oldAttrs.postInstall);
|
||||
|
||||
meta = {
|
||||
description = "A fork of picom featuring improved animations and other features";
|
||||
homepage = "https://github.com/allusive-dev/picom-allusive";
|
||||
license = with lib.licenses; [ mit mpl20 ];
|
||||
maintainers = with lib.maintainers; [ allusive ];
|
||||
};
|
||||
})
|
@ -36802,6 +36802,8 @@ with pkgs;
|
||||
|
||||
picom = callPackage ../applications/window-managers/picom { };
|
||||
|
||||
picom-allusive = callPackage ../applications/window-managers/picom/picom-allusive.nix { };
|
||||
|
||||
picom-jonaburg = callPackage ../applications/window-managers/picom/picom-jonaburg.nix { };
|
||||
|
||||
picom-next = callPackage ../applications/window-managers/picom/picom-next.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user