summaryrefslogtreecommitdiffstats
path: root/release.nix
blob: 7595ba6bdff877e3cb92481f78f09e13599dd347 (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
let jobs = rec {


  tarball =
    { patchelfSrc ? {path = ./.;}
    , nixpkgs ? {path = ../nixpkgs;}
    , release ? {path = ../release;}
    }:
    
    with import "${release.path}/generic-dist" nixpkgs.path;
    
    makeSourceTarball {
      inherit (pkgs) stdenv;
      name = "patchelf-tarball";
      src = patchelfSrc;
      buildInputs = [pkgs.autoconf pkgs.automake pkgs.pan];
    };


  coverage =
    { tarball ? {path = jobs.tarball {};}
    , nixpkgs ? {path = ../nixpkgs;}
    , release ? {path = ../release;}
    }:

    with import "${release.path}/generic-dist" nixpkgs.path;

    coverageAnalysis {
      inherit (pkgs) stdenv;
      name = "patchelf-coverage";
      src = tarball.path;
    };


  build =
    { tarball ? {path = jobs.tarball {};}
    , nixpkgs ? {path = ../nixpkgs;}
    , release ? {path = ../release;}
    , system ? "i686-linux"
    }:

    with import "${release.path}/generic-dist" nixpkgs.path;

    nixBuild {
      inherit (pkgsFun {inherit system;}) stdenv;
      name = "patchelf-build";
      src = tarball.path;
      postInstall = ''
        echo "doc readme $out/share/doc/patchelf/README" >> $out/nix-support/hydra-build-products
      '';
    };


  rpm =
    { tarball ? {path = jobs.tarball {};}
    , nixpkgs ? {path = ../nixpkgs;}
    , release ? {path = ../release;}
    }:

    with import "${release.path}/generic-dist" nixpkgs.path;

    rpmBuild {
      inherit (pkgs) stdenv;
      name = "patchelf-rpm";
      src = tarball.path;
      diskImage = diskImages_i686.fedora9i386;
    };

            
}; in jobs