nixpkgs/pkgs/development/libraries/liblognorm/default.nix
Bjørn Forsman bd01fad0ed Captialize meta.description of all packages
In line with the Nixpkgs manual.

A mechanical change, done with this command:

  find pkgs -name "*.nix" | \
      while read f; do \
          sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
      done

I manually skipped some:

* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00

24 lines
713 B
Nix

{ stdenv, fetchurl, pkgconfig, libestr, json_c, pcre }:
stdenv.mkDerivation rec {
name = "liblognorm-1.1.2";
src = fetchurl {
url = "http://www.liblognorm.com/files/download/${name}.tar.gz";
sha256 = "0v2k5awr6vsbp36gybrys3zfkl675sywhsh4lnm7f21inlpi2nlk";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libestr json_c pcre ];
configureFlags = [ "--enable-regexp" ];
meta = with stdenv.lib; {
homepage = http://www.liblognorm.com/;
description = "Help to make sense out of syslog data, or, actually, any event data that is present in text form";
license = licenses.lgpl21;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}