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
, fetchFromGitHub
, xorgproto
, libX11
, libXft
, libXcomposite
, libXdamage
, libXext
, libXinerama
, libjpeg
, giflib
, pkg-config
{
lib,
stdenv,
fetchFromGitHub,
xorgproto,
libX11,
libXft,
libXcomposite,
libXdamage,
libXext,
libXinerama,
libjpeg,
giflib,
pkg-config,
}:
stdenv.mkDerivation rec {
pname = "skippy-xd";
version = "0.7.2";
version = "0.8.0";
src = fetchFromGitHub {
owner = "felixfung";
repo = "skippy-xd";
rev = "e033b9ea80b5bbe922b05c64ed6ba0bf31c3acf6";
hash = "sha256-DsoRxbAF0DitgxknJVHDWH7VL5hWMhwH9I6m1SyItMM=";
rev = "30da57cb59ccf77f766718f7d533ddbe533ba241";
hash = "sha256-YBUDbI1SHsBI/fA3f3W1sPu3wXSodMbTGvAMqOz7RCM=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
@ -39,6 +40,7 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
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;