nixpkgs/pkgs/development/libraries/libestr/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

19 lines
492 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libestr-0.1.10";
src = fetchurl {
url = "http://libestr.adiscon.com/files/download/${name}.tar.gz";
sha256 = "0g3hmh3wxgjbn5g6cgy2l0ja806jd0ayp22bahcds3kmdq95wrdx";
};
meta = with stdenv.lib; {
homepage = http://libestr.adiscon.com/;
description = "Some essentials for string handling";
license = licenses.lgpl21;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
};
}