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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
591 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libestr }:
stdenv.mkDerivation rec {
pname = "libee";
version = "0.4.1";
2013-03-14 13:07:56 +00:00
src = fetchurl {
url = "http://www.libee.org/download/files/download/libee-${version}.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 = {
description = "An Event Expression Library inspired by CEE";
homepage = "http://www.libee.org/";
license = lib.licenses.lgpl21Plus;
mainProgram = "libee-convert";
platforms = lib.platforms.unix;
2013-03-14 13:07:56 +00:00
};
}