nixpkgs-suyu/pkgs/applications/window-managers/larswm/default.nix
Lluís Batlle i Rossell 45944d3aee I forgot the nix file for larswm
svn path=/nixpkgs/trunk/; revision=21757
2010-05-12 21:53:42 +00:00

19 lines
393 B
Nix

{stdenv, fetchurl, imake, libX11, libXext, libXmu}:
stdenv.mkDerivation {
name = "larswm-7.5.3";
src = /home/viric/larswm-7.5.3.tar.gz;
buildInputs = [ imake libX11 libXext libXmu ];
configurePhase = ''
xmkmf
makeFlags="DESTDIR=$out"
'';
meta = {
homepage = http://larswm.fnurt.net/;
description = "9wm-like tiling window manager";
license = "free";
};
}