lol
at master 27 lines 600 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 pkg-config, 6 libestr, 7}: 8stdenv.mkDerivation rec { 9 pname = "libee"; 10 version = "0.4.1"; 11 12 src = fetchurl { 13 url = "http://www.libee.org/download/files/download/libee-${version}.tar.gz"; 14 sha256 = "09xhgzmsq0g3jsyj24vy67bhzk2fv971w5ixdkhfwgar70cw1nn0"; 15 }; 16 17 nativeBuildInputs = [ pkg-config ]; 18 buildInputs = [ libestr ]; 19 20 meta = { 21 description = "Event Expression Library inspired by CEE"; 22 homepage = "http://www.libee.org/"; 23 license = lib.licenses.lgpl21Plus; 24 mainProgram = "libee-convert"; 25 platforms = lib.platforms.unix; 26 }; 27}