aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/build-managers/redo-apenwarr/default.nix
blob: d25367c3e5729a072a7e22212d65ebaf7d466448 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{ stdenv, lib, python27, fetchFromGitHub, mkdocs, which, findutils, coreutils
, perl
, doCheck ? true
}: let

  # copy from 
  # pkgs/applications/networking/pyload/beautifulsoup.nix
  beautifulsoup = python27.pkgs.callPackage ./beautifulsoup.nix {
    pythonPackages = python27.pkgs;
  };

  mkdocs-exclude = python27.pkgs.callPackage ./mkdocs-exclude.nix {
    pythonPackages = python27.pkgs;
  };
in stdenv.mkDerivation rec {

  pname = "redo-apenwarr";
  version = "0.42";

  src = fetchFromGitHub {
    owner = "apenwarr";
    repo = pname;
    rev = "${pname}-${version}";
    sha256 = "1060yb7hrxm8c7bfvb0y4j0acpxsj6hbykw1d9549zpkxxr9nsgm";
  };

  postPatch = ''

    patchShebangs minimal/do

  '' + lib.optionalString doCheck ''
    unset CC CXX

    substituteInPlace minimal/do.test \
      --replace "/bin/pwd" "${coreutils}/bin/pwd"

    substituteInPlace t/105-sympath/all.do \
      --replace "/bin/pwd" "${coreutils}/bin/pwd"

    substituteInPlace t/all.do \
      --replace "/bin/ls" "ls"

    substituteInPlace t/110-compile/hello.o.do \
      --replace "/usr/include" "${stdenv.lib.getDev stdenv.cc.libc}/include"

    substituteInPlace t/200-shell/nonshelltest.do \
      --replace "/usr/bin/env perl" "${perl}/bin/perl"

  '';

  inherit doCheck;

  checkTarget = "test";

  outputs = [ "out" "man" ];

  installFlags = [
    "PREFIX=$(out)"
    "DESTDIR=/"
  ];

  nativeBuildInputs = [
    python27
    beautifulsoup
    mkdocs
    mkdocs-exclude
    which
    findutils
  ];

  meta = with lib; {
    description = "Smaller, easier, more powerful, and more reliable than make. An implementation of djb's redo.";
    homepage = https://github.com/apenwarr/redo;
    maintainers = with maintainers; [
      andrewchambers
      ck3d
    ];
    license = licenses.asl20;
  };
}