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 }: 2 3 stdenv.mkDerivation rec { 4 pname = "remake"; 5 - remakeVersion = "4.1"; 6 - dbgVersion = "1.1"; 7 version = "${remakeVersion}+dbg-${dbgVersion}"; 8 9 src = fetchurl { 10 - url = "mirror://sourceforge/project/bashdb/remake/${version}/remake-${remakeVersion}+dbg${dbgVersion}.tar.bz2"; 11 - sha256 = "1zi16pl7sqn1aa8b7zqm9qnd9vjqyfywqm8s6iap4clf86l7kss2"; 12 }; 13 14 patches = [ 15 ./glibc-2.27-glob.patch 16 ]; 17 18 - buildInputs = [ readline ]; 19 20 meta = { 21 homepage = "http://bashdb.sourceforge.net/remake/"; 22 - license = lib.licenses.gpl3; 23 description = "GNU Make with comprehensible tracing and a debugger"; 24 platforms = with lib.platforms; linux ++ darwin; 25 - maintainers = with lib.maintainers; [ bjornfor ]; 26 }; 27 }
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , pkg-config 5 + , readline 6 + , guileSupport ? false 7 + , guile 8 + }: 9 10 stdenv.mkDerivation rec { 11 pname = "remake"; 12 + remakeVersion = "4.3"; 13 + dbgVersion = "1.5"; 14 version = "${remakeVersion}+dbg-${dbgVersion}"; 15 16 src = fetchurl { 17 + url = "mirror://sourceforge/project/bashdb/remake/${version}/remake-${remakeVersion}+dbg-${dbgVersion}.tar.gz"; 18 + sha256 = "0xlx2485y0israv2pfghmv74lxcv9i5y65agy69mif76yc4vfvif"; 19 }; 20 21 patches = [ 22 ./glibc-2.27-glob.patch 23 ]; 24 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 32 33 meta = { 34 homepage = "http://bashdb.sourceforge.net/remake/"; 35 + license = lib.licenses.gpl3Plus; 36 description = "GNU Make with comprehensible tracing and a debugger"; 37 platforms = with lib.platforms; linux ++ darwin; 38 + maintainers = with lib.maintainers; [ bjornfor shamilton ]; 39 }; 40 }