summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorsyberant <sybrand@neuralcoding.com>2020-07-29 10:41:04 +0200
committersyberant <sybrand@neuralcoding.com>2020-07-29 10:41:04 +0200
commit1275f71c0dc14d4ab46d8d7418eaa2846b163c68 (patch)
treef5e4662bdaf03e07e6e90aee05211acf734d2592 /pkgs/applications/window-managers
parent1371d3df8ad77e2373b73f98d7c127d6cfd3ae43 (diff)
downloadnixpkgs-1275f71c0dc14d4ab46d8d7418eaa2846b163c68.tar
nixpkgs-1275f71c0dc14d4ab46d8d7418eaa2846b163c68.tar.gz
nixpkgs-1275f71c0dc14d4ab46d8d7418eaa2846b163c68.tar.bz2
nixpkgs-1275f71c0dc14d4ab46d8d7418eaa2846b163c68.tar.lz
nixpkgs-1275f71c0dc14d4ab46d8d7418eaa2846b163c68.tar.xz
nixpkgs-1275f71c0dc14d4ab46d8d7418eaa2846b163c68.tar.zst
nixpkgs-1275f71c0dc14d4ab46d8d7418eaa2846b163c68.zip
dwm: refactor
Removed buildPhase as it calls make by default
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/dwm/default.nix2
1 files changed, 0 insertions, 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";