about summary refs log tree commit diff
path: root/pkgs/development/libraries/xcb-util-cursor
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-04-06 11:29:45 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-04-18 07:08:45 +0200
commit4b6b03e2ce01b8c87126598d945c57e7fb24981c (patch)
treeb14a096792ba4106f21a69af7980da33fc5e8411 /pkgs/development/libraries/xcb-util-cursor
parent4f0dae99f9527e7fcce03eef298ad0958bff24d6 (diff)
xcb-util-cursor: autogenerate as other xorg pkgs
HEAD version still needed on darwin, reportedly:
https://github.com/vcunat/nixpkgs/commit/0c915b8812#commitcomment-10615086
Diffstat (limited to 'pkgs/development/libraries/xcb-util-cursor')
-rw-r--r--pkgs/development/libraries/xcb-util-cursor/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/development/libraries/xcb-util-cursor/default.nix b/pkgs/development/libraries/xcb-util-cursor/default.nix
deleted file mode 100644
index 984f192e4c9b5..0000000000000
--- a/pkgs/development/libraries/xcb-util-cursor/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv, fetchurl, bashInteractive, autoconf, automake, libtool, pkgconfig
-, git, xlibs, gnum4, libxcb, gperf }:
-
-stdenv.mkDerivation rec {
-  name = "xcb-util-cursor-0.1.1";
-
-  src = fetchurl {
-    url    = "http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.1.tar.gz";
-    sha256 = "0lkjbcml305imyzr80yb8spjvq6y83v2allk5gc9plkv39zag29z";
-  };
-
-  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;
-  };
-
-  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"
-  '';
-}