I forgot the nix file for larswm

svn path=/nixpkgs/trunk/; revision=21757
This commit is contained in:
Lluís Batlle i Rossell 2010-05-12 21:53:42 +00:00
parent 632ad9e73c
commit 45944d3aee

View file

@ -0,0 +1,19 @@
{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";
};
}