38 lines
920 B
Nix
38 lines
920 B
Nix
{
|
|
lib,
|
|
appimageTools,
|
|
runCommand,
|
|
curl,
|
|
gnugrep,
|
|
cacert,
|
|
}:
|
|
|
|
appimageTools.wrapType1 rec {
|
|
pname = "pureref";
|
|
version = "2.0.0";
|
|
|
|
src =
|
|
runCommand "PureRef-${version}_x64.Appimage"
|
|
{
|
|
nativeBuildInputs = [
|
|
curl
|
|
gnugrep
|
|
cacert
|
|
];
|
|
outputHash = "sha256-47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=";
|
|
}
|
|
''
|
|
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
|
|
'';
|
|
|
|
meta = {
|
|
description = "Reference Image Viewer";
|
|
homepage = "https://www.pureref.com";
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.elnudev ];
|
|
platforms = [ "x86_64-linux" ];
|
|
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
|
};
|
|
}
|