2013-03-14 13:07:56 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libestr }:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libee-0.4.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://www.libee.org/download/files/download/libee-0.4.1.tar.gz;
|
2014-10-12 15:13:21 +01:00
|
|
|
sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
|
2013-03-14 13:07:56 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libestr];
|
2013-03-14 13:07:56 +00:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.libee.org/;
|
2013-03-14 13:07:56 +00:00
|
|
|
description = "An Event Expression Library inspired by CEE";
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-03-14 13:07:56 +00:00
|
|
|
};
|
|
|
|
}
|