about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/window-managers/larswm/default.nix
blob: b918c28938c1dd80b24fe345b4df700c1dd5366a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, imake, gccmakedep, libX11, libXext, libXmu }:

stdenv.mkDerivation {
  name = "larswm-7.5.3";

  src = fetchurl {
    url = "mirror://sourceforge/larswm/larswm-7.5.3.tar.gz";
    sha256 = "1xmlx9g1nhklxjrg0wvsya01s4k5b9fphnpl9zdwp29mm484ni3v";
  };

  nativeBuildInputs = [ imake gccmakedep ];
  buildInputs = [ libX11 libXext libXmu ];

  makeFlags = [ "BINDIR=$(out)/bin" "MANPATH=$(out)/share/man" ];
  installTargets = [ "install" "install.man" ];

  meta = {
    homepage = "http://www.fnurt.net/larswm";
    description = "9wm-like tiling window manager";
    license = stdenv.lib.licenses.free;
    platforms = stdenv.lib.platforms.linux;
  };
}