Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
bash,
|
|
}:
|
|
let
|
|
mkscript = path: text: ''
|
|
mkdir -pv `dirname ${path}`
|
|
cat > ${path} <<"EOF"
|
|
#!${bash}/bin/bash
|
|
ME=$(basename ${path})
|
|
${text}
|
|
EOF
|
|
sed -i "s@%out@$out@g" ${path}
|
|
chmod +x ${path}
|
|
'';
|
|
|
|
hashname =
|
|
r:
|
|
let
|
|
rpl = lib.replaceStrings [ ":" "/" ] [ "_" "_" ];
|
|
in
|
|
(rpl r.url) + "-" + (rpl r.rev);
|
|
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "fakegit";
|
|
|
|
buildCommand = ''
|
|
mkdir -pv $out/repos
|
|
${lib.concatMapStrings (
|
|
r: "cp -r ${fetchgit r} $out/repos/${hashname r}\n"
|
|
) (import ./src-libs.nix)}
|
|
|
|
${mkscript "$out/bin/checkout-git.sh" ''
|
|
if test "$#" -ne 4; then
|
|
echo "Usage: $0 DESTINATION URL GITBRANCH HASH"
|
|
exit 1
|
|
fi
|
|
DEST=$1
|
|
URL=`echo $2 | tr :/ __`
|
|
GITBRANCH=$3
|
|
REVISION=$4
|
|
|
|
REVISION=`echo $REVISION | tr :/ __`
|
|
|
|
rm -rf $DEST
|
|
mkdir -pv $DEST
|
|
echo "FAKEGIT cp -r %out/repos/$URL-$REVISION $DEST" >&2
|
|
cp -r %out/repos/$URL-$REVISION/* $DEST
|
|
chmod u+w -R $DEST
|
|
''}
|
|
'';
|
|
}
|