26 lines
610 B
Nix
26 lines
610 B
Nix
{
|
|
lib,
|
|
appimageTools,
|
|
requireFile,
|
|
}:
|
|
|
|
appimageTools.wrapType1 rec {
|
|
pname = "pureref";
|
|
version = "2.0.3";
|
|
|
|
src = requireFile {
|
|
name = "PureRef-${version}_x64.Appimage";
|
|
sha256 = "d2247570fdac66f596a8ac11030aba2ff6e62014981caae523cbbc57684035f3";
|
|
url = "https://www.pureref.com/download.php";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Reference Image Viewer";
|
|
homepage = "https://www.pureref.com";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ elnudev ];
|
|
platforms = [ "x86_64-linux" ];
|
|
sourceProvenance = [ sourceTypes.binaryNativeCode ];
|
|
};
|
|
}
|