Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
1003 B
Nix
56 lines
1003 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
xorgproto,
|
|
libX11,
|
|
libXft,
|
|
libXcomposite,
|
|
libXdamage,
|
|
libXext,
|
|
libXinerama,
|
|
libjpeg,
|
|
giflib,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "skippy-xd";
|
|
version = "2025.09.07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "felixfung";
|
|
repo = "skippy-xd";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-PxVU0atl5OLINFTM1n3REVA/M9iozkHOW9kPgTU/+qI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
xorgproto
|
|
libX11
|
|
libXft
|
|
libXcomposite
|
|
libXdamage
|
|
libXext
|
|
libXinerama
|
|
libjpeg
|
|
giflib
|
|
];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
preInstall = ''
|
|
sed -e "s@/etc/xdg@$out&@" -i Makefile
|
|
'';
|
|
|
|
meta = {
|
|
description = "Expose-style compositing-based standalone window switcher";
|
|
homepage = "https://github.com/felixfung/skippy-xd";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|