2021-11-10 21:21:47 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchgit
|
|
|
|
, xorgproto
|
|
|
|
, libX11
|
|
|
|
, libXft
|
|
|
|
, libXcomposite
|
|
|
|
, libXdamage
|
|
|
|
, libXext
|
|
|
|
, libXinerama
|
|
|
|
, libjpeg
|
|
|
|
, giflib
|
|
|
|
, pkg-config
|
2015-06-14 20:53:25 +01:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
buildInputs = [
|
2021-11-10 21:21:47 +00:00
|
|
|
xorgproto
|
|
|
|
libX11
|
|
|
|
libXft
|
|
|
|
libXcomposite
|
|
|
|
libXdamage
|
|
|
|
libXext
|
|
|
|
libXinerama
|
|
|
|
libjpeg
|
|
|
|
giflib
|
|
|
|
pkg-config
|
2015-06-14 20:53:25 +01:00
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2021-11-10 21:21:47 +00:00
|
|
|
version = "unstable-2015-03-01";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "skippy-xd";
|
2015-06-14 20:53:25 +01:00
|
|
|
inherit buildInputs;
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/richardgv/skippy-xd/";
|
|
|
|
rev = "397216ca67";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "0zcjacilmsv69rv85j6nfr6pxy8z36w1sjz0dbjg6s5m4kga1zl8";
|
2015-06-14 20:53:25 +01:00
|
|
|
};
|
2021-11-10 21:21:47 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2015-06-14 20:53:25 +01:00
|
|
|
preInstall = ''
|
|
|
|
sed -e "s@/etc/xdg@$out&@" -i Makefile
|
|
|
|
'';
|
|
|
|
meta = {
|
2021-01-16 04:20:42 +00:00
|
|
|
description = "Expose-style compositing-based standalone window switcher";
|
2021-11-10 21:21:47 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = [ lib.maintainers.raskin ];
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2015-06-14 20:53:25 +01:00
|
|
|
};
|
|
|
|
}
|