summaryrefslogtreecommitdiffstats
path: root/release.nix
blob: 291d0e056dad2c37af3bc09ae1bdf7294e250fb7 (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
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];
    };

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

    let system = "i686-linux"; in

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

    nixBuild {
      inherit (pkgsFun {inherit system;}) stdenv;
      name = "patchelf-build";
      src = tarball.path;
    };


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

    let system = "i686-linux"; in

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

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