nixpkgs/pkgs/applications/window-managers/larswm/default.nix
Lluís Batlle i Rossell a07de1d9b1 The installation path of larswm was wrong
(Lots of commits for that larswm!)

svn path=/nixpkgs/trunk/; revision=21759
2010-05-12 22:08:45 +00:00

24 lines
508 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"
'';
meta = {
homepage = http://larswm.fnurt.net/;
description = "9wm-like tiling window manager";
license = "free";
};
}