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

20 lines
479 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "mxml-${version}";
version = "2.9";
src = fetchurl {
url = "http://www.msweet.org/files/project3/${name}.tar.gz";
sha256 = "14pzhlfidj5v1qbxy7a59yn4jz9pnjrs2zwalz228jsq7ijm9vfd";
};
meta = with stdenv.lib; {
description = "A small XML library";
homepage = http://www.minixml.org;
license = licenses.lgpl2;
platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ];
};
}