pureref: download source automatically

Mentioned in https://github.com/NixOS/nixpkgs/issues/250520
This commit is contained in:
Gabriel Fontes 2023-11-28 13:20:23 -03:00
parent 491af1f1cc
commit d3f916b237
No known key found for this signature in database
GPG Key ID: 2E54EA7BFE630916
1 changed files with 8 additions and 6 deletions

View File

@ -1,14 +1,16 @@
{ lib, appimageTools, requireFile }:
{ lib, appimageTools, runCommand, curl, gnugrep, cacert }:
appimageTools.wrapType1 rec {
pname = "pureref";
version = "1.11.1";
src = requireFile {
name = "PureRef-${version}_x64.Appimage";
sha256 = "05naywdgykqrsgc3xybskr418cyvbx7vqs994yv9w8zf98gxvbvm";
url = "https://www.pureref.com/download.php";
};
src = runCommand "PureRef-${version}_x64.Appimage" {
nativeBuildInputs = [ curl gnugrep cacert ];
outputHash = "sha256-da/dH0ruI562JylpvE9f2zMUSJ56+T7Y0xlP/xr3yhY=";
} ''
key="$(curl "https://www.pureref.com/download.php" --silent | grep '%3D%3D' | cut -d '"' -f2)"
curl "https://www.pureref.com/files/build.php?build=LINUX64.Appimage&version=${version}&downloadKey=$key" --output $out
'';
extraInstallCommands = ''
mv $out/bin/${pname}-${version} $out/bin/${pname}