From 8bb29f45e8a8760827a8217a35f38d1b7ce7a3f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 2 Jun 2016 10:11:05 -0300 Subject: [PATCH] jwm: 1495 -> 1532 --- .../applications/window-managers/jwm/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/window-managers/jwm/default.nix b/pkgs/applications/window-managers/jwm/default.nix index 540e5d1c1e6f..2da76eabe937 100644 --- a/pkgs/applications/window-managers/jwm/default.nix +++ b/pkgs/applications/window-managers/jwm/default.nix @@ -1,18 +1,18 @@ -{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, which, xorg, - libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp, libXmu, - libpng, libjpeg, expat, xproto, xextproto, xineramaproto, librsvg, gettext, +{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, gettext, which, + xorg, libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp, + libXmu, libpng, libjpeg, expat, xproto, xextproto, xineramaproto, librsvg, freetype, fontconfig }: stdenv.mkDerivation rec { name = "jwm-${version}"; - version = "1495"; + version = "1532"; src = fetchurl { url = "https://github.com/joewing/jwm/archive/s${version}.tar.gz"; - sha256 = "0sn9la3k36k1d9qyxab1sbv2mqicq2w7q4wgy4bj8d48zc8xjy6v"; + sha256 = "02g3n72rmyy5l9hn6jdb7kzhsn1c0padazxfn0sv6s95w6r8hcvr"; }; - nativeBuildInputs = [ pkgconfig automake autoconf libtool which gettext ]; + nativeBuildInputs = [ pkgconfig automake autoconf libtool gettext which ]; buildInputs = [ libX11 libXext libXinerama libXpm libXft xorg.libXrender libXau libXdmcp libXmu libpng libjpeg expat xproto xextproto xineramaproto @@ -24,9 +24,9 @@ stdenv.mkDerivation rec { meta = { homepage = "http://joewing.net/projects/jwm/"; - description = "A window manager for X11 that requires only Xlib"; + description = "Joe's Window Manager is a light-weight X11 window manager"; license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.romildo ]; platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.romildo ]; }; }