From bf9c16d4ace2ea853586c627660953d6a6ccb3dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 23 Dec 2015 09:18:22 +0100 Subject: [PATCH] texinfo6: remove meta.branch and refactor meta It was wrong ("5.2") and seemed unused in nixpkgs. --- pkgs/development/tools/misc/texinfo/6.0.nix | 7 +++---- 1 file 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 11e822291e8..670c7182150 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"; }; }