summary refs log tree commit diff
path: root/pkgs/servers/http/nix-binary-cache/default.nix
blob: 653233239627823a8308953e5fef249addf863c7 (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
{lib, stdenv
, coreutils, findutils, nix, xz, bzip2, gnused, gnugrep, openssl
, lighttpd, iproute2 }:
stdenv.mkDerivation rec {
  version = "2014-06-29-1";
  pname = "nix-binary-cache";

  phases = ["installPhase"];

  installPhase = ''
    mkdir -p "$out/bin"
    substitute "${./nix-binary-cache.cgi.in}" "$out"/bin/nix-binary-cache.cgi \
      --replace @out@ "$out/bin" \
      --replace @shell@ "${stdenv.shell}" \
      --replace @coreutils@ "${coreutils}/bin" \
      --replace @findutils@ "${findutils}/bin" \
      --replace @nix@ "${nix.out}/bin" \
      --replace @xz@ "${xz.bin}/bin" \
      --replace @bzip2@ "${bzip2.bin}/bin" \
      --replace @gnused@ "${gnused}/bin" \
      --replace @gnugrep@ "${gnugrep}/bin" \
      --replace @openssl@ "${openssl.bin}/bin" \
      --replace @lighttpd@ "${lighttpd}/sbin" \
      --replace @iproute@ "${iproute2}/sbin" \
      --replace "xXxXx" "xXxXx"

    chmod a+x "$out/bin/nix-binary-cache.cgi"

    substitute "${./nix-binary-cache-start.in}" "$out"/bin/nix-binary-cache-start \
      --replace @out@ "$out/bin" \
      --replace @shell@ "${stdenv.shell}" \
      --replace @coreutils@ "${coreutils}/bin" \
      --replace @findutils@ "${findutils}/bin" \
      --replace @nix@ "${nix.out}/bin" \
      --replace @xz@ "${xz.bin}/bin" \
      --replace @bzip2@ "${bzip2.bin}/bin" \
      --replace @gnused@ "${gnused}/bin" \
      --replace @gnugrep@ "${gnugrep}/bin" \
      --replace @openssl@ "${openssl.bin}/bin" \
      --replace @lighttpd@ "${lighttpd}/sbin" \
      --replace @iproute@ "${iproute2}/sbin" \
      --replace "xXxXx" "xXxXx"

    chmod a+x "$out/bin/nix-binary-cache-start"
  '';

  meta = {
    description = "A set of scripts to serve the Nix store as a binary cache";
    longDescription = ''
      This package installs a CGI script that serves Nix store path in the
      binary cache format. It also installs a launcher called
      nix-binary-cache-start that can be run without any setup to launch
      a binary cache and get the example arguments for its usage.
    '';
    maintainers = [lib.maintainers.raskin];
    license = lib.licenses.gpl2Plus;
    inherit version;
    platforms = lib.platforms.all;
    hydraPlatforms = [];
  };
}