-
Notifications
You must be signed in to change notification settings - Fork 301
/
tarball.nix
66 lines (57 loc) · 1.98 KB
/
tarball.nix
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
# Run like this:
# nix-build ./tarball.nix
# or
# nix-build --argstr hydraName snabb-lwaftr --argstr version v1.0.0 ./tarball.nix
# and the release tarball will be written to ./result/ . It will contain
# both the sources and the executable, patched to run on Linux LSB systems.
#
# NOTE: Hydra doesn't use the --tags parameter in the "git describe" command (see
# https://github.com/NixOS/hydra/blob/master/src/lib/Hydra/Plugin/GitInput.pm#L148
# ), so lightweight (non-annotated) tags are not found. Always create annotated
# tags with the "git tag" command by using one of the -a, -s or -u options.
{ nixpkgs ? <nixpkgs>
, hydraName ? "snabb"
, src ? ./.
, version ? "dev"
}:
let
pkgs = import nixpkgs {};
name = (src:
if builtins.isAttrs src then
# Called from Hydra with "src" as "Git version", get the version from git tags.
# If the last commit is the tag's one, you'll just get the tag name: "v3.1.7";
# otherwise you'll also get the number of commits since the last tag, and the
# shortened commit checksum: "v3.1.7-7-g89747a1".
"${hydraName}-${src.gitTag}"
else
# Called from the command line, the user supplies the version.
"${hydraName}-${version}") src;
in {
tarball = pkgs.stdenv.mkDerivation rec {
inherit name src;
buildInputs = with pkgs; [ makeWrapper patchelf ];
postUnpack = ''
mkdir -p $out/$name
cp -a $sourceRoot/* $out/$name
'';
preBuild = ''
make clean
'';
installPhase = ''
mv src/snabb $out
'';
fixupPhase = ''
patchelf --shrink-rpath $out/snabb
patchelf --set-rpath /lib/x86_64-linux-gnu $out/snabb
patchelf --set-interpreter /lib64/ld-linux-x86-64.so.2 $out/snabb
'';
doDist = true;
distPhase = ''
cd $out
tar Jcf $name.tar.xz *
# Make the tarball available for download through Hydra.
mkdir -p $out/nix-support
echo "file tarball $out/$name.tar.xz" >> $out/nix-support/hydra-build-products
'';
};
}