summary refs log tree commit diff
path: root/pkgs/development/libraries/libee/default.nix
blob: e8ffa37379e2b7b51393c63a2d3fca31159b4c81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkg-config, libestr }:
stdenv.mkDerivation {
  name = "libee-0.4.1";

  src = fetchurl {
    url = "http://www.libee.org/download/files/download/libee-0.4.1.tar.gz";
    sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libestr];

  meta = {
    homepage = "http://www.libee.org/";
    description = "An Event Expression Library inspired by CEE";
    platforms = stdenv.lib.platforms.unix;
    license = stdenv.lib.licenses.lgpl21Plus;
  };
}