Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
750 B
Nix
47 lines
750 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
imake,
|
|
gccmakedep,
|
|
libX11,
|
|
libXext,
|
|
libXmu,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "larswm";
|
|
version = "7.5.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/larswm/larswm-${version}.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 = lib.licenses.free;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|