Merge pull request #329703 from Lenivaya/update-skippy-xd

skippy-xd: 0.7.2 -> 0.8.0
This commit is contained in:
7c6f434c 2024-07-25 10:05:13 +00:00 committed by GitHub
commit 1eddda1e53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,25 +1,26 @@
{ lib {
, stdenv lib,
, fetchFromGitHub stdenv,
, xorgproto fetchFromGitHub,
, libX11 xorgproto,
, libXft libX11,
, libXcomposite libXft,
, libXdamage libXcomposite,
, libXext libXdamage,
, libXinerama libXext,
, libjpeg libXinerama,
, giflib libjpeg,
, pkg-config giflib,
pkg-config,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "skippy-xd"; pname = "skippy-xd";
version = "0.7.2"; version = "0.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "felixfung"; owner = "felixfung";
repo = "skippy-xd"; repo = "skippy-xd";
rev = "e033b9ea80b5bbe922b05c64ed6ba0bf31c3acf6"; rev = "30da57cb59ccf77f766718f7d533ddbe533ba241";
hash = "sha256-DsoRxbAF0DitgxknJVHDWH7VL5hWMhwH9I6m1SyItMM="; hash = "sha256-YBUDbI1SHsBI/fA3f3W1sPu3wXSodMbTGvAMqOz7RCM=";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
buildInputs = [ buildInputs = [
@ -39,6 +40,7 @@ stdenv.mkDerivation rec {
''; '';
meta = with lib; { meta = with lib; {
description = "Expose-style compositing-based standalone window switcher"; description = "Expose-style compositing-based standalone window switcher";
homepage = "https://github.com/felixfung/skippy-xd";
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ raskin ]; maintainers = with maintainers; [ raskin ];
platforms = platforms.linux; platforms = platforms.linux;