summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libIDL/default.nix
blob: 5783976d9a2263ac1882c9cc6afddab2c9980b82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl_gnome, flex, bison, pkgconfig, glib, gettext}:

stdenv.mkDerivation rec {
  name = src.pkgname;

  src = fetchurl_gnome {
    project = "libIDL";
    major = "0"; minor = "8"; patchlevel = "14";
    sha256 = "08129my8s9fbrk0vqvnmx6ph4nid744g5vbwphzkaik51664vln5";
  };

  buildInputs = [ glib gettext ];

  buildNativeInputs = [ flex bison pkgconfig ];
}