aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/window-managers/herbstluftwm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/window-managers/herbstluftwm/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/window-managers/herbstluftwm/default.nix48
1 files changed, 33 insertions, 15 deletions
diff --git a/nixpkgs/pkgs/applications/window-managers/herbstluftwm/default.nix b/nixpkgs/pkgs/applications/window-managers/herbstluftwm/default.nix
index 8c4f6e452f4..7dc715e126c 100644
--- a/nixpkgs/pkgs/applications/window-managers/herbstluftwm/default.nix
+++ b/nixpkgs/pkgs/applications/window-managers/herbstluftwm/default.nix
@@ -1,29 +1,47 @@
-{ stdenv, fetchurl, pkgconfig, glib, libX11, libXext, libXinerama }:
+{ stdenv, fetchurl, cmake, pkgconfig, glib, libX11, libXext, libXinerama, libXrandr
+, withDoc ? stdenv.buildPlatform == stdenv.targetPlatform, asciidoc ? null }:
+
+# Doc generation is disabled by default when cross compiling because asciidoc
+# does not cross compile for now
+
+assert withDoc -> asciidoc != null;
stdenv.mkDerivation rec {
- name = "herbstluftwm-0.7.2";
+ pname = "herbstluftwm";
+ version = "0.8.1";
src = fetchurl {
- url = "https://herbstluftwm.org/tarballs/${name}.tar.gz";
- sha256 = "1kc18aj9j3nfz6fj4qxg9s3gg4jvn6kzi3ii24hfm0vqdpy17xnz";
+ url = "https://herbstluftwm.org/tarballs/herbstluftwm-${version}.tar.gz";
+ sha256 = "0c1lf82z6a56g8asin91cmqhzk3anw0xwc44b31bpjixadmns57y";
};
- patchPhase = ''
- substituteInPlace config.mk \
- --replace "/usr/local" "$out" \
- --replace "/etc" "$out/etc" \
- --replace "/zsh/functions/Completion/X" "/zsh/site-functions" \
- --replace "/usr/share" "\$(PREFIX)/share"
- '';
+ outputs = [
+ "out"
+ ] ++ stdenv.lib.optionals withDoc [
+ "doc"
+ "man"
+ ];
+
+ cmakeFlags = [
+ "-DCMAKE_INSTALL_SYSCONF_PREFIX=${placeholder "out"}/etc"
+ ] ++ stdenv.lib.optional (!withDoc) "-DWITH_DOCUMENTATION=OFF";
+
+ nativeBuildInputs = [
+ cmake
+ pkgconfig
+ ] ++ stdenv.lib.optional withDoc asciidoc;
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ glib libX11 libXext libXinerama ];
+ buildInputs = [
+ libX11
+ libXext
+ libXinerama
+ libXrandr
+ ];
meta = {
description = "A manual tiling window manager for X";
- homepage = "http://herbstluftwm.org/";
+ homepage = "https://herbstluftwm.org/";
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ the-kenny ];
};
}