My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libee/default.nix

21 lines
591 B

{ lib, stdenv, fetchurl, pkg-config, libestr }:
stdenv.mkDerivation rec {
pname = "libee";
version = "0.4.1";
src = fetchurl {
url = "http://www.libee.org/download/files/download/libee-${version}.tar.gz";
sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libestr];
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;
};
}