nixpkgs/pkgs/development/libraries/libee/default.nix
Pascal Wittmann d5b50b6f52
libee: add license
see issue #43716
2018-08-08 21:23:49 +02:00

20 lines
534 B
Nix

{ 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";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libestr];
meta = {
homepage = http://www.libee.org/;
description = "An Event Expression Library inspired by CEE";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.lgpl21Plus;
};
}