summary refs log tree commit diff
path: root/pkgs/development/libraries/xcb-util-cursor
diff options
context:
space:
mode:
authorMarcus Crestani <crestani@informatik.uni-tuebingen.de>2015-01-08 21:46:05 +0100
committerMarcus Crestani <marcus@crestani.de>2015-02-04 20:44:19 +0100
commit92ca6149347b563082d08bee5860927d22cb016c (patch)
treefa17485eb7bdec4a2757bbb0f1b1ef96fb332c74 /pkgs/development/libraries/xcb-util-cursor
parent8e2fb7c81658da0419569bce8a1efe4d2410c38b (diff)
downloadnixpkgs-92ca6149347b563082d08bee5860927d22cb016c.tar
nixpkgs-92ca6149347b563082d08bee5860927d22cb016c.tar.gz
nixpkgs-92ca6149347b563082d08bee5860927d22cb016c.tar.bz2
nixpkgs-92ca6149347b563082d08bee5860927d22cb016c.tar.lz
nixpkgs-92ca6149347b563082d08bee5860927d22cb016c.tar.xz
nixpkgs-92ca6149347b563082d08bee5860927d22cb016c.tar.zst
nixpkgs-92ca6149347b563082d08bee5860927d22cb016c.zip
i3: Use xcb-util-cursor-HEAD on OS X.
Diffstat (limited to 'pkgs/development/libraries/xcb-util-cursor')
-rw-r--r--pkgs/development/libraries/xcb-util-cursor/HEAD.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix
new file mode 100644
index 00000000000..9ca3474ce3b
--- /dev/null
+++ b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchgit, bashInteractive, autoconf, automake, libtool, pkgconfig
+, git, xlibs, gnum4, libxcb, gperf }:
+
+stdenv.mkDerivation rec {
+  name = "xcb-util-cursor-HEAD";
+
+  src = fetchgit {
+    url    = http://anongit.freedesktop.org/git/xcb/util-cursor.git;
+    rev    = "f03cc278c6cce0cf721adf9c3764d3c5fba63392";
+    sha256 = "1ljvq1gdc1lc33dwn4pzwppws2zgyqx51y3sd3c8gb7vcg5f27i5";
+  };
+
+  meta = with stdenv.lib; {
+    description = "XCB cursor library (libxcursor port)";
+    homepage    = http://cgit.freedesktop.org/xcb/util-cursor;
+    license     = licenses.mit;
+    maintainer  = with maintainers; [ lovek323 ];
+    platforms   = platforms.linux ++ platforms.darwin;
+  };
+
+  buildInputs = [
+    autoconf
+    automake
+    gnum4
+    gperf
+    libtool
+    libxcb
+    pkgconfig
+    xlibs.utilmacros
+    xlibs.xcbutilimage
+    xlibs.xcbutilrenderutil
+  ];
+
+  configurePhase = ''
+    sed -i '15 i\
+      LT_INIT' configure.ac
+    ${bashInteractive}/bin/bash autogen.sh --prefix="$out"
+  '';
+}