summary refs log tree commit diff
path: root/pkgs/applications/window-managers/lemonbar
diff options
context:
space:
mode:
authorChris Darnell <chris@cedeel.com>2016-10-08 21:20:34 -0400
committerChris Darnell <chris@cedeel.com>2016-10-08 21:20:34 -0400
commite1766240aa2ec0bdbe11c21a48ce01079199bd45 (patch)
treedeeeea8d9b2bfbf0402b1c9725ef823f926a37b4 /pkgs/applications/window-managers/lemonbar
parent0d59fc1169654fa1f77e17ad73099895af7bba4d (diff)
downloadnixpkgs-e1766240aa2ec0bdbe11c21a48ce01079199bd45.tar
nixpkgs-e1766240aa2ec0bdbe11c21a48ce01079199bd45.tar.gz
nixpkgs-e1766240aa2ec0bdbe11c21a48ce01079199bd45.tar.bz2
nixpkgs-e1766240aa2ec0bdbe11c21a48ce01079199bd45.tar.lz
nixpkgs-e1766240aa2ec0bdbe11c21a48ce01079199bd45.tar.xz
nixpkgs-e1766240aa2ec0bdbe11c21a48ce01079199bd45.tar.zst
nixpkgs-e1766240aa2ec0bdbe11c21a48ce01079199bd45.zip
lemonbar-xft-unstable: 2015-07-23 -> 2016-02-17
Changed name from bar-xft-git to conform to guidelines.
Diffstat (limited to 'pkgs/applications/window-managers/lemonbar')
-rw-r--r--pkgs/applications/window-managers/lemonbar/xft.nix37
1 files changed, 17 insertions, 20 deletions
diff --git a/pkgs/applications/window-managers/lemonbar/xft.nix b/pkgs/applications/window-managers/lemonbar/xft.nix
index f5dd944a43d..132c10ae973 100644
--- a/pkgs/applications/window-managers/lemonbar/xft.nix
+++ b/pkgs/applications/window-managers/lemonbar/xft.nix
@@ -1,27 +1,24 @@
 { stdenv, fetchFromGitHub, perl, libxcb, libXft }:
 
-let
-  version = "2015-07-23";
-in
-  stdenv.mkDerivation rec {
-    name = "bar-xft-git-${version}";
+stdenv.mkDerivation rec {
+  name = "lemonbar-xft-unstable-2016-02-17";
 
-    src = fetchFromGitHub {
-      owner = "krypt-n";
-      repo = "bar";
-      rev = "3020df19232153f9e98ae0c8111db3de938a2719";
-      sha256 = "0a54yr534jd4l5gjzpypc0y5lh2qb2wsrd662s84jjgq8bpss8av";
-    };
+  src = fetchFromGitHub {
+    owner  = "krypt-n";
+    repo   = "bar";
+    rev    = "a43b801ddc0f015ce8b1211f4c062fad12cd63a9";
+    sha256 = "0iqas07qjvabxyvna2m9aj5bcwnkdii1izl9jxha63vz0zlsc4gd";
+  };
 
-    buildInputs = [ libxcb libXft perl ];
+  buildInputs = [ libxcb libXft perl ];
 
-    prePatch = ''sed -i "s@/usr@$out@" Makefile'';
+  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;
-    };
+  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;
+  };
 }