nixpkgs/pkgs/applications/version-management/git-and-tools/git2cl/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

23 lines
567 B
Nix

{ fetchgit, stdenv, perl }:
stdenv.mkDerivation {
name = "git2cl-20080827";
src = fetchgit {
url = "git://repo.or.cz/git2cl.git";
rev = "8373c9f74993e218a08819cbcdbab3f3564bbeba";
sha256 = "b0d39379640c8a12821442431e2121f7908ce1cc88ec8ec6bede218ea8c21f2f";
};
buildInputs = [ perl ];
installPhase = ''
install -D -m755 git2cl $out/bin/git2cl
install -D -m644 README $out/share/doc/git2cl/README
'';
meta = {
homepage = "http://josefsson.org/git2cl/";
description = "Convert git logs to GNU style ChangeLog files";
};
}