From b9b078309ae4d0d4b7b30c3c7553a5739ef9666a Mon Sep 17 00:00:00 2001 From: Daniel Nagy Date: Fri, 30 Jun 2023 23:45:00 +0200 Subject: [PATCH] global: 6.6.7 -> 6.6.10 ChangeLog: https://cvs.savannah.gnu.org/viewvc/global/global/NEWS?view=markup&pathrev=VERSION-6_6_10 --- pkgs/development/tools/misc/global/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/misc/global/default.nix b/pkgs/development/tools/misc/global/default.nix index 70ec9278ae13..ed0596fef8a0 100644 --- a/pkgs/development/tools/misc/global/default.nix +++ b/pkgs/development/tools/misc/global/default.nix @@ -6,24 +6,24 @@ let pygments = python3Packages.pygments; in stdenv.mkDerivation rec { pname = "global"; - version = "6.6.7"; + version = "6.6.10"; src = fetchurl { url = "mirror://gnu/global/${pname}-${version}.tar.gz"; - sha256 = "sha256-aaD3f1OCfFVoF2wdOCFm3zYedCY6BH8LMFiqLyrVijw="; + hash = "sha256-LdHmqUXpPAE5D7lBpOaU9McbvXVp1kFJwE6Se79NzOg="; }; nativeBuildInputs = [ libtool makeWrapper ]; - buildInputs = [ ncurses ]; + buildInputs = [ ncurses sqlite ]; propagatedBuildInputs = [ pygments ]; configureFlags = [ "--with-ltdl-include=${libtool}/include" "--with-ltdl-lib=${libtool.lib}/lib" - "--with-ncurses=${ncurses.dev}" - "--with-sqlite3=${sqlite.dev}" + "--with-ncurses=${ncurses}" + "--with-sqlite3" "--with-exuberant-ctags=${ctags}/bin/ctags" "--with-universal-ctags=${universal-ctags}/bin/ctags" "--with-posix-sort=${coreutils}/bin/sort" @@ -57,5 +57,6 @@ in stdenv.mkDerivation rec { license = licenses.gpl3Plus; maintainers = with maintainers; [ pSub peterhoeg ]; platforms = platforms.unix; + changelog = "https://cvs.savannah.gnu.org/viewvc/global/global/NEWS?view=markup&pathrev=VERSION-${lib.replaceStrings [ "." ] [ "_" ] version}"; }; }