about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2022-12-26 20:51:14 -0300
committerGitHub <noreply@github.com>2022-12-26 20:51:14 -0300
commit4b64461057c81aa092b3d67e4c8fe0a297019340 (patch)
tree429a2e58f1e5d9255917e0466b1b006d3e888f55 /pkgs/applications/window-managers
parent7a073668c1d20587daf0e097ec1a15cb5d92a387 (diff)
parentaf9d6e8b6e2e25b4b78eb082bd98064c08f2bfe3 (diff)
Merge pull request #207832 from atorres1985-contrib/bevelbar
misc updates
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/bevelbar/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/applications/window-managers/bevelbar/default.nix b/pkgs/applications/window-managers/bevelbar/default.nix
deleted file mode 100644
index 74da42f88c94c..0000000000000
--- a/pkgs/applications/window-managers/bevelbar/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, libX11, libXrandr, libXft }:
-
-stdenv.mkDerivation rec {
-  pname = "bevelbar";
-  version = "16.11";
-
-  src = fetchFromGitHub {
-    owner = "vain";
-    repo = "bevelbar";
-    rev = "v${version}";
-    sha256 = "1hbwg3vdxw9fyshy85skv476p0zr4ynvhcz2xkijydpzm2j3rmjm";
-  };
-
-  buildInputs = [ libX11 libXrandr libXft ];
-
-  installFlags = [ "prefix=$(out)" ];
-
-  meta = with lib; {
-    description = "An X11 status bar with fancy schmancy 1985-ish beveled borders";
-    inherit (src.meta) homepage;
-    license = licenses.mit;
-    platforms = platforms.all;
-    maintainers = [ maintainers.neeasade ];
-  };
-}