Skip to content

Commit

Permalink
xcbutilxrm: init at 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mbakke committed Aug 13, 2016
1 parent 97e5b88 commit ab53f39
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/servers/x11/xorg/xcb-util-xrm.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, m4, libxcb, xcbutil, libX11 }:

stdenv.mkDerivation rec {
version = "1.0";
name = "xcb-util-xrm-${version}";

src = fetchurl {
url = "https://github.com/Airblader/xcb-util-xrm/releases/download/v${version}/${name}.tar.bz2";
sha256 = "1h5vxwpd37dqfw9yj1l4zd9c5dj30r3g0szgysr6kd7xrqgaq04l";
};

buildInputs = [ pkgconfig m4 libxcb xcbutil ]
++ stdenv.lib.optional doCheck [ libX11 ];
doCheck = true;

meta = with stdenv.lib; {
description = "XCB utility functions for the X resource manager";
homepage = https://github.com/Airblader/xcb-util-xrm;
license = licenses.mit; # X11 variant
platforms = with platforms; unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9755,6 +9755,8 @@ in
xcb-util-cursor = xorg.xcbutilcursor;
xcb-util-cursor-HEAD = callPackage ../development/libraries/xcb-util-cursor/HEAD.nix { };

xcbutilxrm = callPackage ../servers/x11/xorg/xcb-util-xrm.nix { };

xdo = callPackage ../tools/misc/xdo { };

xineLib = callPackage ../development/libraries/xine-lib {
Expand Down

0 comments on commit ab53f39

Please sign in to comment.