Unverified Commit 4e32ecdc authored by 7c6f434c's avatar 7c6f434c Committed by GitHub
Browse files

skippy-xd: 0.8.0 -> 2025.09.07 (#446253)

parents d061c4df 7524bb23
Loading
Loading
Loading
Loading
+16 −9
Original line number Diff line number Diff line
@@ -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;
  };
}
})