nixpkgs/pkgs/development/libraries/libee/default.nix

20 lines
534 B
Nix
Raw Normal View History

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;
sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
2013-03-14 13:07:56 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libestr];
2013-03-14 13:07:56 +00:00
meta = {
homepage = http://www.libee.org/;
2013-03-14 13:07:56 +00:00
description = "An Event Expression Library inspired by CEE";
platforms = stdenv.lib.platforms.unix;
2018-08-08 19:23:49 +00:00
license = stdenv.lib.licenses.lgpl21Plus;
2013-03-14 13:07:56 +00:00
};
}