1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/window-managers/i3/gaps.nix

34 lines
1.2 KiB
Nix
Raw Normal View History

2016-11-09 12:47:20 +00:00
{ fetchurl, stdenv, i3, autoreconfHook }:
2016-05-30 22:32:44 +01:00
i3.overrideAttrs (oldAttrs : rec {
2016-05-30 22:32:44 +01:00
name = "i3-gaps-${version}";
2020-05-02 12:59:03 +01:00
version = "4.18.1";
2016-05-30 22:32:44 +01:00
src = fetchurl {
url = "https://github.com/Airblader/i3/releases/download/${version}/i3-${version}.tar.bz2";
sha256 = "1cxwsrdzp18r5hj0ymg9fbzp1mhkj4m9h6i0b9cdg79cjbacba9k";
2016-05-30 22:32:44 +01:00
};
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ autoreconfHook ];
2016-05-30 22:32:44 +01:00
# fatal error: GENERATED_config_enums.h: No such file or directory
enableParallelBuilding = false;
2016-05-30 22:32:44 +01:00
meta = with stdenv.lib; {
description = "A fork of the i3 tiling window manager with some additional features";
homepage = "https://github.com/Airblader/i3";
maintainers = with maintainers; [ fmthoma ];
license = licenses.bsd3;
platforms = platforms.all;
longDescription = ''
Fork of i3wm, a tiling window manager primarily targeted at advanced users
and developers. Based on a tree as data structure, supports tiling,
stacking, and tabbing layouts, handled dynamically, as well as floating
windows. This fork adds a few features such as gaps between windows.
Configured via plain text file. Multi-monitor. UTF-8 clean.
'';
};
})