2013-03-14 14:07:56 +01: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 16:13:21 +02:00
|
|
|
sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
|
2013-03-14 14:07:56 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libestr];
|
2013-03-14 14:07:56 +01:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.libee.org/;
|
2013-03-14 14:07:56 +01:00
|
|
|
description = "An Event Expression Library inspired by CEE";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-03-14 14:07:56 +01:00
|
|
|
};
|
|
|
|
}
|