78 lines
2.3 KiB
Nix
78 lines
2.3 KiB
Nix
{ stdenv, pkgs, fetchgit, autoconf, sbcl, lispPackages, xdpyinfo, texinfo4
|
|
, makeWrapper , rlwrap, gnused, gnugrep, coreutils, xprop
|
|
, extraModulePaths ? [] }:
|
|
|
|
let
|
|
version = "0.9.9";
|
|
contrib = (fetchgit {
|
|
url = "https://github.com/stumpwm/stumpwm-contrib.git";
|
|
rev = "e139885fffcedaeba4b263e4575daae4364cad52";
|
|
sha256 = "fe75bb27538a56f2d213fb21e06a8983699e129a10da7014ddcf6eed5cd965f8";
|
|
});
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "stumpwm-${version}";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/stumpwm/stumpwm";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "05fkng2wlmhy3kb9zhrrv9zpa16g2p91p5y0wvmwkppy04cw04ps";
|
|
};
|
|
|
|
buildInputs = [
|
|
texinfo4 makeWrapper autoconf
|
|
sbcl
|
|
lispPackages.clx
|
|
lispPackages.cl-ppcre
|
|
xdpyinfo
|
|
];
|
|
|
|
# NOTE: The patch needs an update for the next release.
|
|
# `(stumpwm:set-module-dir "@MODULE_DIR@")' needs to be in it.
|
|
patches = [ ./fix-module-path.patch ];
|
|
|
|
# Stripping destroys the generated SBCL image
|
|
dontStrip = true;
|
|
|
|
configurePhase = ''
|
|
./autogen.sh
|
|
./configure --prefix=$out --with-module-dir=$out/share/stumpwm/modules
|
|
'';
|
|
|
|
preBuild = ''
|
|
cp -r --no-preserve=mode ${contrib} modules
|
|
substituteInPlace head.lisp \
|
|
--replace 'run-shell-command "xdpyinfo' 'run-shell-command "${xdpyinfo}/bin/xdpyinfo'
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -pv $out/bin
|
|
make install
|
|
|
|
mkdir -p $out/share/stumpwm/modules
|
|
cp -r modules/* $out/share/stumpwm/modules/
|
|
for d in ${stdenv.lib.concatStringsSep " " extraModulePaths}; do
|
|
cp -r --no-preserve=mode "$d" $out/share/stumpwm/modules/
|
|
done
|
|
|
|
# Copy stumpish;
|
|
cp $out/share/stumpwm/modules/util/stumpish/stumpish $out/bin/
|
|
chmod +x $out/bin/stumpish
|
|
wrapProgram $out/bin/stumpish \
|
|
--prefix PATH ":" "${rlwrap}/bin:${gnused}/bin:${gnugrep}/bin:${coreutils}/bin:${xprop}/bin"
|
|
|
|
# Paths in the compressed image $out/bin/stumpwm are not
|
|
# recognized by Nix. Add explicit reference here.
|
|
mkdir $out/nix-support
|
|
echo ${xdpyinfo} > $out/nix-support/xdpyinfo
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tiling window manager for X11";
|
|
homepage = https://github.com/stumpwm/;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ hiberno the-kenny ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|