3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/window-managers/pekwm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
1.6 KiB
Nix
Raw Normal View History

2022-01-05 00:57:27 +00:00
{ lib
, stdenv
2021-01-05 02:34:57 +00:00
, fetchFromGitHub
2022-01-05 00:57:27 +00:00
, awk
, grep
, sed
, runtimeShell
2021-01-05 02:34:57 +00:00
, cmake
, libXext
, libXft
, libXinerama
, libXpm
, libXrandr
, libjpeg
, libpng
2022-01-05 00:57:27 +00:00
, pkg-config
2021-01-05 02:34:57 +00:00
}:
2016-07-03 21:09:12 +01:00
stdenv.mkDerivation rec {
pname = "pekwm";
2022-01-05 00:57:27 +00:00
version = "0.2.1";
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}";
2022-01-05 00:57:27 +00:00
hash= "sha256-voHPstdcd4CHnAdD3PMxca0A6MyMYJi8Ik0UlFB0vG0=";
2016-07-03 21:09:12 +01:00
};
2022-01-05 00:57:27 +00:00
nativeBuildInputs = [
cmake
pkg-config
];
cmakeFlags = [
"-DAWK=${awk}/bin/awk"
"-DGREP=${grep}/bin/grep"
"-DSED=${sed}/bin/sed"
"-DSH=${runtimeShell}"
];
2021-01-05 02:34:57 +00:00
buildInputs = [
libXext
libXft
libXinerama
libXpm
libXrandr
libjpeg
libpng
];
2016-07-03 21:09:12 +01:00
meta = with lib; {
2022-01-05 00:57:27 +00:00
homepage = "https://www.pekwm.se/";
2016-07-03 21:09:12 +01:00
description = "A lightweight window manager";
longDescription = ''
2022-01-05 00:57:27 +00:00
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 keychains, and much more.
- Lightweight and Unobtrusive, a window manager shouldn't be noticed.
2016-07-03 21:09:12 +01:00
- Very configurable, we all work and think in different ways.
2022-01-05 00:57:27 +00:00
- Automatic properties, for all the lazy people, make things appear as
they should when starting applications.
2016-07-03 21:09:12 +01:00
- Chainable Keygrabber, usability for everyone.
'';
2022-01-05 00:57:27 +00:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
2016-07-03 21:09:12 +01:00
};
}