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.
20 lines
483 B
20 lines
483 B
{ lib, appimageTools, requireFile }:
|
|
|
|
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";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Reference Image Viewer";
|
|
homepage = "https://www.pureref.com";
|
|
license = licenses.unfree;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|