biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / window-managers / wmfs / default.nix
blob6c850278b337f860c3bc77f7679d141fc20e113b
1 { lib, stdenv, fetchFromGitHub, fetchpatch,
2   libX11, libXinerama, libXrandr, libXpm, libXft, imlib2 }:
3 stdenv.mkDerivation {
4   pname = "wmfs";
6   version = "201902";
8   src = fetchFromGitHub {
9     owner = "xorg62";
10     repo = "wmfs";
11     sha256 = "1m7dsmmlhq2qipim659cp9aqlriz1cwrrgspl8baa5pncln0gd5c";
12     rev = "b7b8ff812d28c79cb22a73db2739989996fdc6c2";
13   };
15   patches = [
16     # Pull patch pending upstream inclusion to fix build on
17     # -fno-common toolchain like upstream gcc-10:
18     #  https://github.com/xorg62/wmfs/pull/104
19     (fetchpatch {
20       name = "fno-common.patch";
21       url = "https://github.com/xorg62/wmfs/commit/e4ec12618f4689d791892ebb49df9610a25d24d3.patch";
22       sha256 = "0qvwry9sikvr85anzha9x4gcx0r2ckwdxqw2in2l6bl9z9d9c0w2";
23     })
24   ];
26   buildInputs = [
27     imlib2
28     libX11
29     libXinerama
30     libXrandr
31     libXpm
32     libXft
33   ];
35   preConfigure = "substituteInPlace configure --replace '-lxft' '-lXft'";
37   makeFlags = [
38     "PREFIX=${placeholder "out"}"
39     "XDG_CONFIG_DIR=${placeholder "out"}/etc/xdg"
40     "MANPREFIX=${placeholder "out"}/share/man"
41   ];
43   meta = with lib; {
44     description = "Window manager from scratch";
45     license = licenses.bsd2;
46     maintainers = [ maintainers.balsoft ];
47     platforms = platforms.linux;
48     mainProgram = "wmfs";
49   };