summary refs log tree commit diff
path: root/pkgs/development/libraries/cddlib
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-16 11:20:42 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-16 11:29:30 +0700
commit8dd78bb4fbb51227c3bf3547add972c175e83ba9 (patch)
treecde2aa2d215523d435671893f16d92d3a9e0eec7 /pkgs/development/libraries/cddlib
parentb3616bd96400ce0252c241d76fcafb64389defc6 (diff)
downloadnixpkgs-8dd78bb4fbb51227c3bf3547add972c175e83ba9.tar
nixpkgs-8dd78bb4fbb51227c3bf3547add972c175e83ba9.tar.gz
nixpkgs-8dd78bb4fbb51227c3bf3547add972c175e83ba9.tar.bz2
nixpkgs-8dd78bb4fbb51227c3bf3547add972c175e83ba9.tar.lz
nixpkgs-8dd78bb4fbb51227c3bf3547add972c175e83ba9.tar.xz
nixpkgs-8dd78bb4fbb51227c3bf3547add972c175e83ba9.tar.zst
nixpkgs-8dd78bb4fbb51227c3bf3547add972c175e83ba9.zip
treewide: fix double quoted strings in meta.description
Diffstat (limited to 'pkgs/development/libraries/cddlib')
-rw-r--r--pkgs/development/libraries/cddlib/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/cddlib/default.nix b/pkgs/development/libraries/cddlib/default.nix
index cebe6fb2bf6..4b745a2a348 100644
--- a/pkgs/development/libraries/cddlib/default.nix
+++ b/pkgs/development/libraries/cddlib/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
   doCheck = true;
   meta = with stdenv.lib; {
     inherit version;
-    description = ''An implementation of the Double Description Method for generating all vertices of a convex polyhedron'';
+    description = "An implementation of the Double Description Method for generating all vertices of a convex polyhedron";
     license = licenses.gpl2Plus;
     maintainers = teams.sage.members;
     platforms = platforms.unix;