nixpkgs/pkgs/applications/window-managers/cwm/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

26 lines
747 B
Nix

{ stdenv, fetchFromGitHub, libX11, libXinerama, libXrandr, libXft, yacc, pkgconfig }:
stdenv.mkDerivation rec {
name = "cwm-5.6";
src = fetchFromGitHub {
owner = "chneukirchen";
repo = "cwm";
rev = "b7a8c11750d11721a897fdb8442d52f15e7a24a0";
sha256 = "0a0x8rgqif4kxy7hj70hck7jma6c8jy4428ybl8fz9qxgxh014ml";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libX11 libXinerama libXrandr libXft yacc ];
prePatch = ''sed -i "s@/usr/local@$out@" Makefile'';
meta = with stdenv.lib; {
description = "A lightweight and efficient window manager for X11";
homepage = https://github.com/chneukirchen/cwm;
maintainers = [];
license = licenses.isc;
platforms = platforms.linux;
};
}