summary refs log tree commit diff
path: root/pkgs/applications/window-managers/bar
diff options
context:
space:
mode:
authorkoral <koral@mailoo.org>2016-01-16 16:03:18 +0100
committerkoral <koral@mailoo.org>2016-01-16 16:03:18 +0100
commit9ed945784630b5c3cfcae5fdba04c88fb4286a60 (patch)
tree004869b79277b2278283812992b33c540033e360 /pkgs/applications/window-managers/bar
parent26f221d6b62b24d48f79f22e7f12bb6ff10580da (diff)
downloadnixpkgs-9ed945784630b5c3cfcae5fdba04c88fb4286a60.tar
nixpkgs-9ed945784630b5c3cfcae5fdba04c88fb4286a60.tar.gz
nixpkgs-9ed945784630b5c3cfcae5fdba04c88fb4286a60.tar.bz2
nixpkgs-9ed945784630b5c3cfcae5fdba04c88fb4286a60.tar.lz
nixpkgs-9ed945784630b5c3cfcae5fdba04c88fb4286a60.tar.xz
nixpkgs-9ed945784630b5c3cfcae5fdba04c88fb4286a60.tar.zst
nixpkgs-9ed945784630b5c3cfcae5fdba04c88fb4286a60.zip
lemonbar: 1.1 -> 1.2pre
'bar' has been officially renamed 'lemonbar'.
Last release (1.1) is almost a year old, but some bugfixes and new features are available in the repository, let's include them in the derivation.
Diffstat (limited to 'pkgs/applications/window-managers/bar')
-rw-r--r--pkgs/applications/window-managers/bar/default.nix25
-rw-r--r--pkgs/applications/window-managers/bar/xft.nix26
2 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/applications/window-managers/bar/default.nix b/pkgs/applications/window-managers/bar/default.nix
deleted file mode 100644
index 964390d3b59..00000000000
--- a/pkgs/applications/window-managers/bar/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchurl, perl, libxcb }:
-
-let
-  version = "1.1";
-in
-  stdenv.mkDerivation rec {
-    name = "bar-${version}";
-  
-    src = fetchurl {
-      url = "https://github.com/LemonBoy/bar/archive/v${version}.tar.gz";
-      sha256 = "171ciw676cvj80zzbqfbg9nwix36zph0683zmqf279q9b9bmayan";
-    };
-  
-    buildInputs = [ libxcb perl ];
-  
-    prePatch = ''sed -i "s@/usr@$out@" Makefile'';
-  
-    meta = {
-      description = "A lightweight xcb based bar";
-      homepage = https://github.com/LemonBoy/bar;
-      maintainers = [ stdenv.lib.maintainers.meisternu ];
-      license = "Custom";   
-      platforms = stdenv.lib.platforms.linux;
-    };
-}
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;
-    };
-}