nixpkgs/pkgs/desktops/xfce/core/libxfce4util.nix
2013-02-09 18:38:26 +01:00

15 lines
346 B
Nix

{ v, h, stdenv, fetchXfce, pkgconfig, glib, intltool }:
stdenv.mkDerivation rec {
name = "libxfce4util-${v}";
src = fetchXfce.core name h;
buildInputs = [ pkgconfig glib intltool ];
meta = {
homepage = http://www.xfce.org/projects/libxfce4;
description = "Basic utility non-GUI functions for Xfce";
license = "bsd";
};
}