Skip to content

Commit

Permalink
cwm: 0.5.6 -> 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4A6F committed Sep 29, 2019
1 parent f8363c2 commit 141f41b
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions pkgs/applications/window-managers/cwm/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
Expand All @@ -17,9 +19,9 @@ stdenv.mkDerivation {

meta = with stdenv.lib; {
description = "A lightweight and efficient window manager for X11";
homepage = https://github.com/chneukirchen/cwm;
maintainers = [];
license = licenses.isc;
platforms = platforms.linux;
homepage = "https://github.com/leahneukirchen/cwm";
maintainers = with maintainers; [ "0x4A6F" ];
license = licenses.isc;
platforms = platforms.linux;
};
}

0 comments on commit 141f41b

Please sign in to comment.