From 1275f71c0dc14d4ab46d8d7418eaa2846b163c68 Mon Sep 17 00:00:00 2001 From: syberant Date: Wed, 29 Jul 2020 10:41:04 +0200 Subject: [PATCH] dwm: refactor Removed buildPhase as it calls make by default --- pkgs/applications/window-managers/dwm/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/applications/window-managers/dwm/default.nix b/pkgs/applications/window-managers/dwm/default.nix index 7fddeb451fb..455e3249adf 100644 --- a/pkgs/applications/window-managers/dwm/default.nix +++ b/pkgs/applications/window-managers/dwm/default.nix @@ -24,8 +24,6 @@ stdenv.mkDerivation { postPatch = let configFile = if isDerivation conf || builtins.isPath conf then conf else writeText "config.def.h" conf; in optionalString (conf!=null) "cp ${configFile} config.def.h"; - buildPhase = " make "; - meta = { homepage = "https://suckless.org/"; description = "Dynamic window manager for X";