remake: 4.1 -> 4.3 (#119737)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by SCOTT-HAMILTON Sandro and committed by GitHub 5bc29623 8cb93e89

+21 -8
+21 -8
pkgs/development/tools/build-managers/remake/default.nix
··· 1 - { lib, stdenv, fetchurl, readline }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , pkg-config 5 + , readline 6 + , guileSupport ? false 7 + , guile 8 + }: 2 9 3 10 stdenv.mkDerivation rec { 4 11 pname = "remake"; 5 - remakeVersion = "4.1"; 6 - dbgVersion = "1.1"; 12 + remakeVersion = "4.3"; 13 + dbgVersion = "1.5"; 7 14 version = "${remakeVersion}+dbg-${dbgVersion}"; 8 15 9 16 src = fetchurl { 10 - url = "mirror://sourceforge/project/bashdb/remake/${version}/remake-${remakeVersion}+dbg${dbgVersion}.tar.bz2"; 11 - sha256 = "1zi16pl7sqn1aa8b7zqm9qnd9vjqyfywqm8s6iap4clf86l7kss2"; 17 + url = "mirror://sourceforge/project/bashdb/remake/${version}/remake-${remakeVersion}+dbg-${dbgVersion}.tar.gz"; 18 + sha256 = "0xlx2485y0israv2pfghmv74lxcv9i5y65agy69mif76yc4vfvif"; 12 19 }; 13 20 14 21 patches = [ 15 22 ./glibc-2.27-glob.patch 16 23 ]; 17 24 18 - buildInputs = [ readline ]; 25 + nativeBuildInputs = [ 26 + pkg-config 27 + ]; 28 + buildInputs = [ readline ] 29 + ++ lib.optionals guileSupport [ guile ]; 30 + 31 + # make check fails, see https://github.com/rocky/remake/issues/117 19 32 20 33 meta = { 21 34 homepage = "http://bashdb.sourceforge.net/remake/"; 22 - license = lib.licenses.gpl3; 35 + license = lib.licenses.gpl3Plus; 23 36 description = "GNU Make with comprehensible tracing and a debugger"; 24 37 platforms = with lib.platforms; linux ++ darwin; 25 - maintainers = with lib.maintainers; [ bjornfor ]; 38 + maintainers = with lib.maintainers; [ bjornfor shamilton ]; 26 39 }; 27 40 }