add herbstluftwm 0.5.2
This commit is contained in:
parent
09583c0f4e
commit
7ffb3a4ba5
25
pkgs/applications/window-managers/herbstluftwm/default.nix
Normal file
25
pkgs/applications/window-managers/herbstluftwm/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -7704,6 +7704,8 @@ let
|
||||
|
||||
hello = callPackage ../applications/misc/hello/ex-2 { };
|
||||
|
||||
herbstluftwm = callPackage ../applications/window-managers/herbstluftwm { };
|
||||
|
||||
hexedit = callPackage ../applications/editors/hexedit { };
|
||||
|
||||
hetznerNixOpsInstaller =
|
||||
|
Loading…
Reference in New Issue
Block a user