bd01fad0ed
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)
20 lines
479 B
Nix
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 ];
|
|
};
|
|
}
|