007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
25 lines
590 B
Nix
25 lines
590 B
Nix
{stdenv, fetchurl, imake, libX11, libXext, libXmu}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "larswm-7.5.3";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/larswm/larswm-7.5.3.tar.gz;
|
|
sha256 = "1xmlx9g1nhklxjrg0wvsya01s4k5b9fphnpl9zdwp29mm484ni3v";
|
|
};
|
|
|
|
buildInputs = [ imake libX11 libXext libXmu ];
|
|
|
|
configurePhase = ''
|
|
xmkmf
|
|
makeFlags="BINDIR=$out/bin MANPATH=$out/share/man"
|
|
installTargets="install install.man"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://larswm.fnurt.net/;
|
|
description = "9wm-like tiling window manager";
|
|
license = stdenv.lib.licenses.free;
|
|
};
|
|
}
|