summary refs log tree commit diff
path: root/pkgs/applications/window-managers/bspwm
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-02-26 21:42:50 +0100
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-02-26 21:44:53 +0100
commitb785d3bb27edd922ecf07f85cfae8ffd6f74b7ba (patch)
treed32b8ba0e08f3c5682ac661e8a3f44c24368761f /pkgs/applications/window-managers/bspwm
parentb4389c073675e20fdd222928852516664a70f46c (diff)
downloadnixpkgs-b785d3bb27edd922ecf07f85cfae8ffd6f74b7ba.tar
nixpkgs-b785d3bb27edd922ecf07f85cfae8ffd6f74b7ba.tar.gz
nixpkgs-b785d3bb27edd922ecf07f85cfae8ffd6f74b7ba.tar.bz2
nixpkgs-b785d3bb27edd922ecf07f85cfae8ffd6f74b7ba.tar.lz
nixpkgs-b785d3bb27edd922ecf07f85cfae8ffd6f74b7ba.tar.xz
nixpkgs-b785d3bb27edd922ecf07f85cfae8ffd6f74b7ba.tar.zst
nixpkgs-b785d3bb27edd922ecf07f85cfae8ffd6f74b7ba.zip
bspwm/unstable.nix: clean up unused file
06c403e846dca7c06924a1cf754cfa10b608616f removed the bspwm-unstable
attribute, but forgot to remove the file which has been done in
this commit.
Diffstat (limited to 'pkgs/applications/window-managers/bspwm')
-rw-r--r--pkgs/applications/window-managers/bspwm/unstable.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/applications/window-managers/bspwm/unstable.nix b/pkgs/applications/window-managers/bspwm/unstable.nix
deleted file mode 100644
index 93718448340..00000000000
--- a/pkgs/applications/window-managers/bspwm/unstable.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ stdenv, fetchFromGitHub, libxcb, libXinerama, xcbutil, xcbutilkeysyms, xcbutilwm }:
-
-stdenv.mkDerivation {
-  name = "bspwm-unstable-2016-09-30";
-
-
-  src = fetchFromGitHub {
-    owner   = "baskerville";
-    repo    = "bspwm";
-    rev     = "8664c007e44de162c1597fd7e163635b274fb747";
-    sha256  = "0clvpz32z38i8kr10hqlifa661szpfn93c63m2aq2h4dwmr44slz";
-  };
-
-  buildInputs = [ libxcb libXinerama xcbutil xcbutilkeysyms xcbutilwm ];
-
-  buildPhase = ''
-    make PREFIX=$out
-  '';
-
-  installPhase = ''
-    make PREFIX=$out install
-  '';
-
-  meta = {
-    description = "A tiling window manager based on binary space partitioning (git version)";
-    homepage = "https://github.com/baskerville/bspwm";
-    maintainers = [ lib.maintainers.meisternu lib.maintainers.epitrochoid ];
-    license = lib.licenses.bsd2;
-    platforms = lib.platforms.linux;
-  };
-}