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