summary refs log tree commit diff
path: root/pkgs/desktops/xfce4-13/xfce4-dev-tools/default.nix
blob: ab64acee0504e0bda059d7cb5ca7f578cf7d38c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ mkXfceDerivation, autoreconfHook, autoconf, automake, glib, gtk_doc, intltool, libtool }:

mkXfceDerivation rec {
  category = "xfce";
  pname = "xfce4-dev-tools";
  version = "4.12.0";

  sha256 = "0bbmlmw2dpm10q2wv3vy592i0vx7b5h1qnd35j0fdzxqb8x2hbw2";

  nativeBuildInputs = [ autoreconfHook ];

  propagatedBuildInputs = [
    autoconf
    automake
    glib
    gtk_doc
    intltool
    libtool
  ];

  preAutoreconf = ''
    substitute configure.ac.in configure.ac \
      --subst-var-by REVISION UNKNOWN
  '';

  setupHook = ./setup-hook.sh;

  meta = {
    description = "Autoconf macros and scripts to augment app build systems";
  };
}