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

21 lines
515 B
Nix

{stdenv, fetchurl, indent}:
stdenv.mkDerivation {
name = "libdwg-0.6";
src = fetchurl {
url = mirror://sourceforge/libdwg/libdwg-0.6.tar.bz2;
sha256 = "0l8ks1x70mkna1q7mzy1fxplinz141bd24qhrm1zkdil74mcsryc";
};
nativeBuildInputs = [ indent ];
meta = {
description = "Library reading dwg files";
homepage = http://libdwg.sourceforge.net/en/;
license = stdenv.lib.licenses.gpl3;
maintainers = [stdenv.lib.maintainers.marcweber];
platforms = stdenv.lib.platforms.linux;
};
}