summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-04-28 10:54:58 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-04-28 10:55:20 +0200
commitf99d5cf2fc9c97df6853eab6187c79c299fb897f (patch)
tree66d9b9093b115cab0bddc719e8300cc5f3404f19 /pkgs/tools/system
parent74742ad584fba8439aa971727764e890dbdf94d0 (diff)
downloadnixpkgs-f99d5cf2fc9c97df6853eab6187c79c299fb897f.tar
nixpkgs-f99d5cf2fc9c97df6853eab6187c79c299fb897f.tar.gz
nixpkgs-f99d5cf2fc9c97df6853eab6187c79c299fb897f.tar.bz2
nixpkgs-f99d5cf2fc9c97df6853eab6187c79c299fb897f.tar.lz
nixpkgs-f99d5cf2fc9c97df6853eab6187c79c299fb897f.tar.xz
nixpkgs-f99d5cf2fc9c97df6853eab6187c79c299fb897f.tar.zst
nixpkgs-f99d5cf2fc9c97df6853eab6187c79c299fb897f.zip
Fixed some descriptions
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/augeas/default.nix2
-rw-r--r--pkgs/tools/system/honcho/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/augeas/default.nix b/pkgs/tools/system/augeas/default.nix
index e6b09932f86..263690728d2 100644
--- a/pkgs/tools/system/augeas/default.nix
+++ b/pkgs/tools/system/augeas/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   buildInputs = [ pkgconfig readline libxml2 ];
 
   meta = with stdenv.lib; {
-    description = "Configuration editing tool.";
+    description = "Configuration editing tool";
     license = licenses.lgpl2;
     homepage = http://augeas.net/;
     maintainers = with maintainers; [offline];
diff --git a/pkgs/tools/system/honcho/default.nix b/pkgs/tools/system/honcho/default.nix
index 6bf2a995a24..b52c1c0f636 100644
--- a/pkgs/tools/system/honcho/default.nix
+++ b/pkgs/tools/system/honcho/default.nix
@@ -20,7 +20,7 @@ let honcho = buildPythonPackage rec {
   doCheck = false;
 
   meta = with stdenv.lib; {
-    description = "A Python clone of Foreman, a tool for managing Procfile-based applications.";
+    description = "A Python clone of Foreman, a tool for managing Procfile-based applications";
     license = licenses.mit;
     homepage = https://github.com/nickstenning/honcho;
     maintainers = with maintainers; [ benley ];