1{ lib, stdenv, fetchurl, pkg-config, libestr }:
2stdenv.mkDerivation {
3 name = "libee-0.4.1";
4
5 src = fetchurl {
6 url = "http://www.libee.org/download/files/download/libee-0.4.1.tar.gz";
7 sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
8 };
9
10 nativeBuildInputs = [ pkg-config ];
11 buildInputs = [ libestr];
12
13 meta = {
14 homepage = "http://www.libee.org/";
15 description = "An Event Expression Library inspired by CEE";
16 platforms = lib.platforms.unix;
17 license = lib.licenses.lgpl21Plus;
18 };
19}