summary refs log tree commit diff
path: root/pkgs/tools/X11/xlayoutdisplay/default.nix
blob: 590d71b8f4a3fe059a1d9d6fe03e250c2f1d0e3d (plain) (blame)
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
{ lib, stdenv, fetchFromGitHub, xorg, boost, gtest }:

stdenv.mkDerivation rec {
  pname = "xlayoutdisplay";
  version = "1.3.0";

  src = fetchFromGitHub {
    owner = "alex-courtis";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-8K9SoZToJTk/sL4PC4Fcsu9XzGLYfNIZlbIyxc9jf84=";
  };

  buildInputs = with xorg; [ libX11 libXrandr libXcursor boost ];
  checkInputs = [ gtest ];

  doCheck = true;
  checkTarget = "gtest";

  # Fixup reference to hardcoded boost path, dynamically link as seems fine and we don't have static for this
  postPatch = ''
    substituteInPlace config.mk --replace '/usr/lib/libboost_program_options.a' '-lboost_program_options'
  '';

  makeFlags = [ "PREFIX=${placeholder "out"}" ];
  enableParallelBuilding = true;

  meta = with lib; {
    description = "Detects and arranges linux display outputs, using XRandR for detection and xrandr for arrangement";
    homepage = "https://github.com/alex-courtis/xlayoutdisplay";
    maintainers = with maintainers; [ dtzWill ];
    license = licenses.asl20;
    platforms = platforms.linux;
  };
}