feat: partial feature parity merge

This commit is contained in:
2024-12-27 14:11:23 +01:00
parent 697d8236b2
commit 4e172607d5
3 changed files with 297 additions and 17 deletions

21
default.nix Normal file
View File

@@ -0,0 +1,21 @@
{ stdenv, fetchurl, libX11, libXft, libXinerama }:
stdenv.mkDerivation {
name = "dwm-HEAD";
src = builtins.filterSource
(path: type: (toString path) != (toString ./.git)) ./.;
buildInputs = [ libX11 libXft libXinerama ];
prePatch = ''
substituteInPlace config.mk --replace '/usr/local' $out
'';
meta = with stdenv.lib; {
description = "Dynamic window manager for X";
homepage = http://dwm.suckless.org/;
license = licenses.mit;
platforms = platforms.all;
};
}