summary refs log tree commit diff
path: root/pkgs/applications/window-managers/bar/xft.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/window-managers/bar/xft.nix')
-rw-r--r--pkgs/applications/window-managers/bar/xft.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/applications/window-managers/bar/xft.nix b/pkgs/applications/window-managers/bar/xft.nix
deleted file mode 100644
index c671f1a4e03..00000000000
--- a/pkgs/applications/window-managers/bar/xft.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, fetchgit, perl, libxcb, libXft }:
-
-let
-  version = "2015-07-23";
-in
-  stdenv.mkDerivation rec {
-    name = "bar-xft-git-${version}";
-
-    src = fetchgit {
-      url = "https://github.com/krypt-n/bar";
-      rev = "020a3e1848ce03287886e9ff80b0b443e9aed543";
-      sha256 = "1xzs37syhlwyjfxnk36qnij5bqa0mi53lf1k851viw4qai2bfkgr";
-    };
-
-    buildInputs = [ libxcb libXft perl ];
-
-    prePatch = ''sed -i "s@/usr@$out@" Makefile'';
-
-    meta = {
-      description = "A lightweight xcb based bar with XFT-support";
-      homepage = https://github.com/krypt-n/bar;
-      maintainers = [ stdenv.lib.maintainers.hiberno ];
-      license = "Custom";
-      platforms = stdenv.lib.platforms.linux;
-    };
-}