2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2021-01-05 02:34:57 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, cmake
|
|
|
|
, libXext
|
|
|
|
, libXft
|
|
|
|
, libXinerama
|
|
|
|
, libXpm
|
|
|
|
, libXrandr
|
|
|
|
, libjpeg
|
|
|
|
, libpng
|
|
|
|
}:
|
2016-07-03 21:09:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "pekwm";
|
2021-01-05 02:34:57 +00:00
|
|
|
version = "0.1.18";
|
2016-07-03 21:09:12 +01:00
|
|
|
|
2021-01-05 02:34:57 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pekdon";
|
|
|
|
repo = "pekwm";
|
|
|
|
rev = "release-${version}";
|
|
|
|
sha256 = "sha256-R1XDEk097ycMI3R4SjUEJv37CiMaDCQMvg7N8haN0MM=";
|
2016-07-03 21:09:12 +01:00
|
|
|
};
|
|
|
|
|
2021-01-05 02:34:57 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
buildInputs = [
|
|
|
|
libXext
|
|
|
|
libXft
|
|
|
|
libXinerama
|
|
|
|
libXpm
|
|
|
|
libXrandr
|
|
|
|
libjpeg
|
|
|
|
libpng
|
|
|
|
];
|
2016-07-03 21:09:12 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-07-03 21:09:12 +01:00
|
|
|
description = "A lightweight window manager";
|
|
|
|
longDescription = ''
|
|
|
|
pekwm is a window manager that once upon a time was based on the
|
|
|
|
aewm++ window manager, but it has evolved enough that it no
|
|
|
|
longer resembles aewm++ at all. It has a much expanded
|
|
|
|
feature-set, including window grouping (similar to ion, pwm, or
|
|
|
|
fluxbox), autoproperties, xinerama, keygrabber that supports
|
2021-01-05 02:34:57 +00:00
|
|
|
keychains, and much more.
|
2016-07-03 21:09:12 +01:00
|
|
|
- Lightweight and Unobtrusive, a window manager shouldn't be
|
|
|
|
noticed.
|
|
|
|
- Very configurable, we all work and think in different ways.
|
|
|
|
- Automatic properties, for all the lazy people, make things
|
|
|
|
appear as they should when starting applications.
|
|
|
|
- Chainable Keygrabber, usability for everyone.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.pekwm.org";
|
2021-01-05 02:34:57 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-07-03 21:09:12 +01:00
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|