about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/build-managers/remake/default.nix
blob: f61a7e774583092d9a5405df5554a5c5ccd070fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv, fetchurl, readline }:

stdenv.mkDerivation rec {
  pname = "remake";
  remakeVersion = "4.1";
  dbgVersion = "1.1";
  version = "${remakeVersion}+dbg-${dbgVersion}";

  src = fetchurl {
    url = "mirror://sourceforge/project/bashdb/remake/${version}/remake-${remakeVersion}+dbg${dbgVersion}.tar.bz2";
    sha256 = "1zi16pl7sqn1aa8b7zqm9qnd9vjqyfywqm8s6iap4clf86l7kss2";
  };

  patches = [
    ./glibc-2.27-glob.patch
  ];

  buildInputs = [ readline ];

  meta = {
    homepage = "http://bashdb.sourceforge.net/remake/";
    license = lib.licenses.gpl3;
    description = "GNU Make with comprehensible tracing and a debugger";
    platforms = with lib.platforms; linux ++ darwin;
    maintainers = with lib.maintainers; [ bjornfor ];
  };
}