biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / window-managers / wmderland / default.nix
blob322906d5657fa38581a3689f78a2838600275d00
1 { lib, stdenv, fetchFromGitHub, cmake, libnotify, libX11, xorgproto, nixosTests }:
3 stdenv.mkDerivation {
4   pname = "wmderland";
5   version = "unstable-2020-07-17";
7   src = fetchFromGitHub {
8     owner = "aesophor";
9     repo = "wmderland";
10     rev = "a40a3505dd735b401d937203ab6d8d1978307d72";
11     sha256 = "0npmlnybblp82mfpinjbz7dhwqgpdqc1s63wc1zs8mlcs19pdh98";
12   };
14   nativeBuildInputs = [
15     cmake
16   ];
18   cmakeBuildType = "MinSizeRel";
20   patches = [ ./0001-remove-flto.patch ];
22   postPatch = ''
23     substituteInPlace src/util.cc \
24       --replace "notify-send" "${libnotify}/bin/notify-send"
25   '';
27   buildInputs = [
28     libX11
29     xorgproto
30   ];
32   postInstall = ''
33     install -Dm0644 -t $out/share/wmderland/contrib $src/example/config
34     install -Dm0644 -t $out/share/xsessions $src/example/wmderland.desktop
35   '';
37   passthru = {
38     tests.basic = nixosTests.wmderland;
39     providedSessions = [ "wmderland" ];
40   };
42   meta = with lib; {
43     description = "Modern and minimal X11 tiling window manager";
44     homepage = "https://github.com/aesophor/wmderland";
45     license = licenses.mit;
46     platforms = libX11.meta.platforms;
47     maintainers = with maintainers; [ takagiy ];
48     mainProgram = "wmderland";
49   };