nixpkgs/pkgs/applications/window-managers/pekwm/default.nix

58 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv
2021-01-05 02:34:57 +00:00
, fetchFromGitHub
, pkg-config
, cmake
, libXext
, libXft
, libXinerama
, libXpm
, libXrandr
, libjpeg
, libpng
}:
2016-07-03 20:09:12 +00:00
stdenv.mkDerivation rec {
pname = "pekwm";
2021-01-05 02:34:57 +00:00
version = "0.1.18";
2016-07-03 20:09:12 +00:00
2021-01-05 02:34:57 +00:00
src = fetchFromGitHub {
owner = "pekdon";
repo = "pekwm";
rev = "release-${version}";
sha256 = "sha256-R1XDEk097ycMI3R4SjUEJv37CiMaDCQMvg7N8haN0MM=";
2016-07-03 20:09:12 +00:00
};
2021-01-05 02:34:57 +00:00
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [
libXext
libXft
libXinerama
libXpm
libXrandr
libjpeg
libpng
];
2016-07-03 20:09:12 +00:00
meta = with lib; {
2016-07-03 20:09:12 +00: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 20:09:12 +00: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.
'';
homepage = "http://www.pekwm.org";
2021-01-05 02:34:57 +00:00
license = licenses.gpl2Plus;
2016-07-03 20:09:12 +00:00
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};
}