lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

liblognorm: Add derivation

+24
+22
pkgs/development/libraries/liblognorm/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, libestr, json_c, pcre }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "liblognorm-1.1.1"; 5 + 6 + src = fetchurl { 7 + url = "http://www.liblognorm.com/files/download/${name}.tar.gz"; 8 + sha256 = "1wi28n5ahajvl64wfn7jpvnskccd6837i0cyq8w8cvrm362b6pd7"; 9 + }; 10 + 11 + buildInputs = [ pkgconfig libestr json_c pcre ]; 12 + 13 + configureFlags = [ "--enable-regexp" ]; 14 + 15 + meta = with stdenv.lib; { 16 + homepage = http://www.liblognorm.com/; 17 + description = "help to make sense out of syslog data, or, actually, any event data that is present in text form"; 18 + license = licenses.lgpl21; 19 + platforms = platforms.all; 20 + maintainers = with maintainers; [ wkennington ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 6319 6319 6320 6320 liblogging = callPackage ../development/libraries/liblogging { }; 6321 6321 6322 + liblognorm = callPackage ../development/libraries/liblognorm { }; 6323 + 6322 6324 libltc = callPackage ../development/libraries/libltc { }; 6323 6325 6324 6326 libmcrypt = callPackage ../development/libraries/libmcrypt {};