nixpkgs/pkgs/applications/window-managers/larswm/default.nix

24 lines
664 B
Nix
Raw Permalink Normal View History

2021-01-15 13:21:58 +00:00
{ lib, 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";
};
2018-11-28 02:14:03 +00:00
nativeBuildInputs = [ imake gccmakedep ];
buildInputs = [ libX11 libXext libXmu ];
2018-11-28 02:14:03 +00:00
makeFlags = [ "BINDIR=$(out)/bin" "MANPATH=$(out)/share/man" ];
2019-11-04 12:33:53 +00:00
installTargets = [ "install" "install.man" ];
meta = {
homepage = "http://www.fnurt.net/larswm";
description = "9wm-like tiling window manager";
2021-01-15 13:21:58 +00:00
license = lib.licenses.free;
platforms = lib.platforms.linux;
};
}