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)
22 lines
608 B
Nix
22 lines
608 B
Nix
{ stdenv, fetchurl, flac }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.0.10";
|
|
name = "shntool-${version}";
|
|
|
|
src = fetchurl {
|
|
url = http://www.etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz;
|
|
sha256 = "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l";
|
|
};
|
|
|
|
buildInputs = [ flac ];
|
|
|
|
meta = {
|
|
description = "Multi-purpose WAVE data processing and reporting utility";
|
|
homepage = http://www.etree.org/shnutils/shntool/;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
|
};
|
|
}
|