summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2021-02-07 12:24:58 +0000
committer06kellyjac <dev@j-k.io>2021-02-09 14:25:21 +0000
commitf5d906922be17ecbfe72cb272e1f0cb0f1496f52 (patch)
tree024f258d815c1d11ad8ba7d34cab8cb6d3ff53d1 /pkgs/applications/window-managers
parent159f0efe2089acdf0f90e70b2d70b2a32a50b504 (diff)
downloadnixpkgs-f5d906922be17ecbfe72cb272e1f0cb0f1496f52.tar
nixpkgs-f5d906922be17ecbfe72cb272e1f0cb0f1496f52.tar.gz
nixpkgs-f5d906922be17ecbfe72cb272e1f0cb0f1496f52.tar.bz2
nixpkgs-f5d906922be17ecbfe72cb272e1f0cb0f1496f52.tar.lz
nixpkgs-f5d906922be17ecbfe72cb272e1f0cb0f1496f52.tar.xz
nixpkgs-f5d906922be17ecbfe72cb272e1f0cb0f1496f52.tar.zst
nixpkgs-f5d906922be17ecbfe72cb272e1f0cb0f1496f52.zip
dwm-git: drop
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/dwm/git.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/applications/window-managers/dwm/git.nix b/pkgs/applications/window-managers/dwm/git.nix
deleted file mode 100644
index a13fc78fbfb..00000000000
--- a/pkgs/applications/window-managers/dwm/git.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib, stdenv, fetchgit, libX11, libXinerama, libXft, writeText, patches ? [ ]
-, conf ? null }:
-
-stdenv.mkDerivation {
-  pname = "dwm-git";
-  version = "20200303";
-
-  src = fetchgit {
-    url = "git://git.suckless.org/dwm";
-    rev = "61bb8b2241d4db08bea4261c82e27cd9797099e7";
-    sha256 = "1j3vly8dln35vnwnwwlaa8ql9fmnlmrv43jcyc8dbfhfxiw6f34l";
-  };
-
-  buildInputs = [ libX11 libXinerama libXft ];
-
-  prePatch = ''sed -i "s@/usr/local@$out@" config.mk'';
-
-  # Allow users set their own list of patches
-  inherit patches;
-
-  # Allow users to set the config.def.h file containing the configuration
-  postPatch = let
-    configFile = if lib.isDerivation conf || builtins.isPath conf then
-      conf
-    else
-      writeText "config.def.h" conf;
-  in lib.optionalString (conf != null) "cp ${configFile} config.def.h";
-
-  meta = with lib; {
-    homepage = "https://suckless.org/";
-    description = "Dynamic window manager for X, development version";
-    license = licenses.mit;
-    maintainers = with maintainers; [ xeji ];
-    platforms = platforms.unix;
-  };
-}