summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-12-23 09:18:22 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-12-23 09:19:38 +0100
commitbf9c16d4ace2ea853586c627660953d6a6ccb3dc (patch)
treeb83abbc1714e587c621bbe0173522efc5fb81eb7 /pkgs
parentfdf3aa99235b5497770bf7d1ba1d7d5e56ca44b6 (diff)
downloadnixlib-bf9c16d4ace2ea853586c627660953d6a6ccb3dc.tar
nixlib-bf9c16d4ace2ea853586c627660953d6a6ccb3dc.tar.gz
nixlib-bf9c16d4ace2ea853586c627660953d6a6ccb3dc.tar.bz2
nixlib-bf9c16d4ace2ea853586c627660953d6a6ccb3dc.tar.lz
nixlib-bf9c16d4ace2ea853586c627660953d6a6ccb3dc.tar.xz
nixlib-bf9c16d4ace2ea853586c627660953d6a6ccb3dc.tar.zst
nixlib-bf9c16d4ace2ea853586c627660953d6a6ccb3dc.zip
texinfo6: remove meta.branch and refactor meta
It was wrong ("5.2") and seemed unused in nixpkgs.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/texinfo/6.0.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/texinfo/6.0.nix b/pkgs/development/tools/misc/texinfo/6.0.nix
index 11e822291e8d..670c7182150e 100644
--- a/pkgs/development/tools/misc/texinfo/6.0.nix
+++ b/pkgs/development/tools/misc/texinfo/6.0.nix
@@ -21,11 +21,11 @@ stdenv.mkDerivation rec {
 
   doCheck = !stdenv.isDarwin && !interactive && !stdenv.isSunOS/*flaky*/;
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = "http://www.gnu.org/software/texinfo/";
     description = "The GNU documentation system";
-    license = stdenv.lib.licenses.gpl3Plus;
-    platforms = stdenv.lib.platforms.all;
+    license = licenses.gpl3Plus;
+    platforms = platforms.all;
 
     longDescription = ''
       Texinfo is the official documentation format of the GNU project.
@@ -42,6 +42,5 @@ stdenv.mkDerivation rec {
       need revise only that one document.  The Texinfo system is
       well-integrated with GNU Emacs.
     '';
-    branch = "5.2";
   };
 }