skippy-xd: 0.8.0 -> 2025.09.07

This commit is contained in:
kyehn
2025-09-26 14:33:46 +08:00
parent 5364a5ff96
commit 7524bb2331
+16 -9
View File
@@ -13,16 +13,20 @@
giflib,
pkg-config,
}:
stdenv.mkDerivation {
stdenv.mkDerivation (finalAttrs: {
pname = "skippy-xd";
version = "0.8.0";
version = "2025.09.07";
src = fetchFromGitHub {
owner = "felixfung";
repo = "skippy-xd";
rev = "30da57cb59ccf77f766718f7d533ddbe533ba241";
hash = "sha256-YBUDbI1SHsBI/fA3f3W1sPu3wXSodMbTGvAMqOz7RCM=";
tag = "v${finalAttrs.version}";
hash = "sha256-PxVU0atl5OLINFTM1n3REVA/M9iozkHOW9kPgTU/+qI=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
xorgproto
libX11
@@ -34,15 +38,18 @@ stdenv.mkDerivation {
libjpeg
giflib
];
makeFlags = [ "PREFIX=$(out)" ];
preInstall = ''
sed -e "s@/etc/xdg@$out&@" -i Makefile
'';
meta = with lib; {
meta = {
description = "Expose-style compositing-based standalone window switcher";
homepage = "https://github.com/felixfung/skippy-xd";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ raskin ];
platforms = lib.platforms.linux;
};
}
})