pekwm: 0.1.17 -> 0.1.18

This commit is contained in:
AndersonTorres 2021-01-04 23:34:57 -03:00
parent 6af002bdd8
commit ea2d4e5445

View File

@ -1,20 +1,37 @@
{ stdenv, fetchurl, pkgconfig
, libpng, libjpeg
, libXext, libXft, libXpm, libXrandr, libXinerama }:
{ stdenv
, fetchFromGitHub
, pkg-config
, cmake
, libXext
, libXft
, libXinerama
, libXpm
, libXrandr
, libjpeg
, libpng
}:
stdenv.mkDerivation rec {
pname = "pekwm";
version = "0.1.17";
version = "0.1.18";
src = fetchurl {
url = "https://www.pekwm.org/projects/pekwm/files/${pname}-${version}.tar.bz2";
sha256 = "003x6bxj1lb2ljxz3v414bn0rdl6z68c0r185fxwgs1qkyzx67wa";
src = fetchFromGitHub {
owner = "pekdon";
repo = "pekwm";
rev = "release-${version}";
sha256 = "sha256-R1XDEk097ycMI3R4SjUEJv37CiMaDCQMvg7N8haN0MM=";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libpng libjpeg
libXext libXft libXpm libXrandr libXinerama ];
nativeBuildInputs = [ pkg-config cmake ];
buildInputs = [
libXext
libXft
libXinerama
libXpm
libXrandr
libjpeg
libpng
];
meta = with stdenv.lib; {
description = "A lightweight window manager";
@ -24,7 +41,7 @@ stdenv.mkDerivation rec {
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.
keychains, and much more.
- Lightweight and Unobtrusive, a window manager shouldn't be
noticed.
- Very configurable, we all work and think in different ways.
@ -33,7 +50,7 @@ stdenv.mkDerivation rec {
- Chainable Keygrabber, usability for everyone.
'';
homepage = "http://www.pekwm.org";
license = licenses.gpl2;
license = licenses.gpl2Plus;
maintainers = [ maintainers.AndersonTorres ];
platforms = platforms.linux;
};