cwm: 0.5.6 -> 0.6.3

(cherry picked from commit 141f41b583b6eb9f620f04d04d6e544381761612)
This commit is contained in:
0x4A6F 2019-09-29 10:16:38 +00:00 committed by Michał Krzysztof Feiler
parent f8363c2721
commit d8dda825a7
No known key found for this signature in database
GPG Key ID: E35C2D7C2C6AC724

View File

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