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

20 lines
531 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libestr }:
2013-03-14 13:07:56 +00:00
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 = [ pkg-config ];
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 = lib.platforms.unix;
license = lib.licenses.lgpl21Plus;
2013-03-14 13:07:56 +00:00
};
}