about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/nant/default.nix
blob: 5da32f2334a78912401389297cbdb58876e6a030 (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
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
{ fetchurl, stdenv, fetchFromGitHub, pkgconfig, mono, makeWrapper
, targetVersion ? "4.5" }:

let
   version = "2015-11-15";

  src = fetchFromGitHub {
    owner = "nant";
    repo = "nant";
    rev = "19bec6eca205af145e3c176669bbd57e1712be2a";
    sha256 = "11l5y76csn686p8i3kww9s0sxy659ny9l64krlqg3y2nxaz0fk6l";
  };

  nant-bootstrapped = stdenv.mkDerivation {
    name = "nant-bootstrapped-${version}";
    inherit src;

  nativeBuildInputs = [ pkgconfig ];
    buildInputs = [ mono makeWrapper ];

    buildFlags = "bootstrap";

    dontStrip = true;

    installPhase = ''
      mkdir -p $out/lib/nant-bootstrap
      cp -r bootstrap/* $out/lib/nant-bootstrap

      mkdir -p $out/bin
      makeWrapper "${mono}/bin/mono" $out/bin/nant \
        --add-flags "$out/lib/nant-bootstrap/NAnt.exe"
    '';
  };

in stdenv.mkDerivation {
  name = "nant-${version}";
  inherit src;

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ mono makeWrapper nant-bootstrapped ];

  dontStrip = true;

  buildPhase = ''
    nant -t:mono-${targetVersion}
  '';

  installPhase = ''
    mkdir -p $out/lib/nant
    cp -r build/mono-${targetVersion}.unix/nant-debug/bin/* $out/lib/nant/

    mkdir -p $out/bin
    makeWrapper "${mono}/bin/mono" $out/bin/nant \
      --add-flags "$out/lib/nant/NAnt.exe"
  '';

  meta = with stdenv.lib; {
    homepage = http://nant.sourceforge.net;
    description = "NAnt is a free .NET build tool";

    longDescription = ''
      NAnt is a free .NET build tool. In theory it is kind of like make without
      make's wrinkles. In practice it's a lot like Ant.
    '';

    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ zohl ];
    platforms = platforms.linux;
  };
}