biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / window-managers / cwm / default.nix
blob89187c89d6cab0e2eaa0edefd71dfe128f73d546
1 { lib, stdenv, fetchFromGitHub, libX11, libXinerama, libXrandr, libXft, bison, pkg-config }:
3 stdenv.mkDerivation rec {
5   pname = "cwm";
6   version = "7.4";
8   src = fetchFromGitHub {
9     owner = "leahneukirchen";
10     repo = pname;
11     rev = "v${version}";
12     hash = "sha256-L3u4mH2UH2pTHhSPVr5dUi94b9DheslkIWL6EgQ05yA=";
13   };
15   strictDeps = true;
17   nativeBuildInputs = [ pkg-config bison ];
18   buildInputs = [ libX11 libXinerama libXrandr libXft ];
20   prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
22   meta = with lib; {
23     description = "Lightweight and efficient window manager for X11";
24     homepage    = "https://github.com/leahneukirchen/cwm";
25     maintainers = with maintainers; [ _0x4A6F mkf ];
26     license     = licenses.isc;
27     platforms   = platforms.linux;
28     mainProgram = "cwm";
29   };