add herbstluftwm 0.5.2

This commit is contained in:
Song Wenwu 2013-07-18 00:02:53 +08:00
parent 09583c0f4e
commit 7ffb3a4ba5
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, glib, libX11, libXinerama }:
stdenv.mkDerivation rec {
name = "herbstluftwm-0.5.2";
src = fetchurl {
url = "http://herbstluftwm.org/tarballs/${name}.tar.gz";
sha256 = "15crb77gw8p1h721r3dcgn0m1n03qk0g81rrnaqw8p7hz44k6gf5";
};
patchPhase = ''
sed -i -e "s:/usr/local:$\{out}:" \
-e "s:/etc:$\{out}/etc:" \
config.mk
'';
buildInputs = [ pkgconfig glib libX11 libXinerama ];
meta = {
description = "A manual tiling window manager for X";
homepage = "http://herbstluftwm.org/";
license = "BSD"; # Simplified BSD License
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -7704,6 +7704,8 @@ let
hello = callPackage ../applications/misc/hello/ex-2 { };
herbstluftwm = callPackage ../applications/window-managers/herbstluftwm { };
hexedit = callPackage ../applications/editors/hexedit { };
hetznerNixOpsInstaller =