Merge pull request #70018 from mkf/cwm-6.3

cwm: 5.6 -> 6.3, and myself as maintainer
This commit is contained in:
José Romildo Malaquias 2019-10-07 11:45:38 -03:00 committed by GitHub
commit 8d3392ee6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 8 deletions

View file

@ -4268,6 +4268,15 @@
githubId = 5698461;
name = "Maciej Kazulak";
};
mkf = {
email = "m@mikf.pl";
github = "mkf";
name = "Michał Krzysztof Feiler";
keys = [{
longkeyid = "rsa4096/0xE35C2D7C2C6AC724";
fingerprint = "1E36 9940 CC7E 01C4 CFE8 F20A E35C 2D7C 2C6A C724";
}];
};
mkg = {
email = "mkg@vt.edu";
github = "mkgvt";

View file

@ -1,13 +1,15 @@
{ stdenv, fetchFromGitHub, libX11, libXinerama, libXrandr, libXft, yacc, pkgconfig }:
stdenv.mkDerivation {
name = "cwm-5.6";
stdenv.mkDerivation rec {
pname = "cwm";
version = "6.3";
src = fetchFromGitHub {
owner = "chneukirchen";
repo = "cwm";
rev = "b7a8c11750d11721a897fdb8442d52f15e7a24a0";
sha256 = "0a0x8rgqif4kxy7hj70hck7jma6c8jy4428ybl8fz9qxgxh014ml";
owner = "leahneukirchen";
repo = pname;
rev = "v${version}";
sha256 = "1m08gd6nscwfx6040zbg2zl89m4g73im68iflzcihd6pdc8rzzs4";
};
nativeBuildInputs = [ pkgconfig ];
@ -17,8 +19,8 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "A lightweight and efficient window manager for X11";
homepage = https://github.com/chneukirchen/cwm;
maintainers = [];
homepage = "https://github.com/leahneukirchen/cwm";
maintainers = with maintainers; [ "0x4A6F" mkf ];
license = licenses.isc;
platforms = platforms.linux;
};