My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/games/ue4/generate-expr-from-cdn.sh

37 lines
672 B

#!/bin/sh
go() {
file="$1"
IFS=$'\n'
for pack in $(perl -n -e '/(<Pack .*\/>)/ && print "$1\n"' $file); do
remotepath=$(echo "$pack" | perl -n -e '/RemotePath="([^"]*)"/ && print $1')
hash=$(echo "$pack" | perl -n -e '/Hash="([^"]*)"/ && print $1')
url="http://cdn.unrealengine.com/dependencies/$remotepath/$hash"
until sha256=$(nix-prefetch-url $url --type sha256); do
true
done
cat <<EOF
"$hash" = fetchurl {
url = $url;
sha256 = "$sha256";
};
EOF
done
}
cat <<EOF
{ fetchurl }:
{
EOF
go Engine/Build/Commit.gitdeps.xml
go Engine/Build/Promoted.gitdeps.xml
cat <<EOF
}
EOF