aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/window-managers/berry/default.nix
blob: 367d0214129ca9e0c5b5df535cd30267fcad491e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ stdenv
, fetchFromGitHub
, libX11
, libXft
, libXinerama
, fontconfig
, freetype
}:

stdenv.mkDerivation rec {
  pname = "berry";
  version = "0.1.7";

  src = fetchFromGitHub {
    owner = "JLErvin";
    repo = pname;
    rev = version;
    sha256 = "sha256-2kFVOE5l1KQvDb5KDL7y0p4M7awJLrxJF871cyc0YZ8=";
  };

  buildInputs =[
    libX11
    libXft
    libXinerama
    fontconfig
    freetype
  ];

  preBuild = ''
    makeFlagsArray+=( PREFIX="${placeholder "out"}"
                      X11INC="${libX11.dev}/include"
                      X11LIB="${libX11}/lib"
                      XINERAMALIBS="-lXinerama"
                      XINERAMAFLAGS="-DXINERAMA"
                      FREETYPELIBS="-lfontconfig -lXft"
                      FREETYPEINC="${freetype.dev}/include/freetype2" )
  '';

  meta = with stdenv.lib; {
    description = "A healthy, bite-sized window manager";
    longDescription = ''
      berry is a healthy, bite-sized window manager written in C for unix
      systems. Its main features include:

      - Controlled via a powerful command-line client, allowing users to control
        windows via a hotkey daemon such as sxhkd or expand functionality via
        shell scripts.
      - Small, hackable source code.
      - Extensible themeing options with double borders, title bars, and window
        text.
      - Intuitively place new windows in unoccupied spaces.
      - Virtual desktops.
    '';
    homepage = "https://berrywm.org/";
    license = licenses.mit;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.linux;
  };
}