2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libestr }:
|
2021-11-09 21:14:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libee";
|
|
|
|
version = "0.4.1";
|
2013-03-14 13:07:56 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-09 21:14:04 +00:00
|
|
|
url = "http://www.libee.org/download/files/download/libee-${version}.tar.gz";
|
2014-10-12 14:13:21 +00:00
|
|
|
sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
|
2013-03-14 13:07:56 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ libestr];
|
2013-03-14 13:07:56 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An Event Expression Library inspired by CEE";
|
2022-05-05 00:52:27 +00:00
|
|
|
homepage = "http://www.libee.org/";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.lgpl21Plus;
|
2022-05-05 00:52:27 +00:00
|
|
|
mainProgram = "libee-convert";
|
|
|
|
platforms = lib.platforms.unix;
|
2013-03-14 13:07:56 +00:00
|
|
|
};
|
|
|
|
}
|