blob: bc4c58bb0c6f778c8e94badce5f5eb85d7af9a94 (
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
|
{ pkgs, stdenv, ... }:
stdenv.mkDerivation {
name = "github-hosts-sync";
src = pkgs.painload;
phases = [
"unpackPhase"
"installPhase"
];
installPhase =
let
ca-bundle = "${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt";
path = stdenv.lib.makeBinPath (with pkgs; [
coreutils
findutils
git
gnugrep
gnused
openssh
socat
]);
in
''
mkdir -p $out/bin
sed \
's,^main() {$,&\n export PATH=${path} GIT_SSL_CAINFO=${ca-bundle},' \
< ./retiolum/scripts/github_hosts_sync/hosts-sync \
> $out/bin/github-hosts-sync
chmod +x $out/bin/github-hosts-sync
'';
}
|