summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/bam/default.nix
blob: b01d22b524b7aef3c0bd5be06a67350320c44b9f (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
x@{builderDefsPackage
  , lua5, python
  , ...}:
builderDefsPackage
(a :
let
  helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
    [];

  buildInputs = map (n: builtins.getAttr n x)
    (builtins.attrNames (builtins.removeAttrs x helperArgNames));
  sourceInfo = rec {
    baseName="bam";
    version="0.4.0";
    name="${baseName}-${version}";
    url="http://github.com/downloads/matricks/bam/${name}.tar.bz2";
    hash="0z90wvyd4nfl7mybdrv9dsd4caaikc6fxw801b72gqi1m9q0c0sn";
  };
in
rec {
  src = a.fetchurl {
    url = sourceInfo.url;
    sha256 = sourceInfo.hash;
  };

  inherit (sourceInfo) name version;
  inherit buildInputs;

  /* doConfigure should be removed if not needed */
  phaseNames = ["check" "doDeploy"];

  build = a.fullDepEntry ''
    sh make_unix.sh
  '' ["minInit" "doUnpack" "addInputs"];

  check = a.fullDepEntry ''
    python scripts/test.py
  '' ["build" "addInputs"];

  doDeploy = a.fullDepEntry ''
    mkdir -p "$out/share/bam"
    cp -r docs examples tests  "$out/share/bam"
    mkdir -p "$out/bin"
    cp bam "$out/bin"
  '' ["minInit" "defEnsureDir" "build"];

  meta = {
    description = "Yet another build manager";
    maintainers = with a.lib.maintainers;
    [
      raskin
    ];
    platforms = with a.lib.platforms;
      linux;
    license = a.lib.licenses.free;
  };
  passthru = {
    updateInfo = {
      downloadPage = "http://matricks.github.com/bam/";
    };
  };
}) x