mirror of
https://github.com/eRgo35/dwm.git
synced 2025-12-16 13:46:11 +01:00
feat: partial feature parity merge
This commit is contained in:
21
default.nix
Normal file
21
default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user