1 { lib, stdenv, fetchurl, pkg-config, libestr }:
2 stdenv.mkDerivation rec {
7 url = "http://www.libee.org/download/files/download/libee-${version}.tar.gz";
8 sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
11 nativeBuildInputs = [ pkg-config ];
12 buildInputs = [ libestr];
15 description = "An Event Expression Library inspired by CEE";
16 homepage = "http://www.libee.org/";
17 license = lib.licenses.lgpl21Plus;
18 mainProgram = "libee-convert";
19 platforms = lib.platforms.unix;