pureref: init at 1.11.1

This commit is contained in:
ElnuDev 2023-01-19 13:06:52 -08:00
parent 8625a430bd
commit afdcfa28cc
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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";
};
extraInstallCommands = ''
mv $out/bin/${pname}-${version} $out/bin/${pname}
'';
meta = with lib; {
description = "Reference Image Viewer";
homepage = "https://www.pureref.com";
license = licenses.unfree;
maintainers = with maintainers; [ elnudev ];
platforms = [ "x86_64-linux" ];
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
};
}

View file

@ -29838,6 +29838,8 @@ with pkgs;
popura = callPackage ../tools/networking/popura {};
pureref = callPackage ../applications/graphics/pureref { };
shepherd = nodePackages."@nerdwallet/shepherd";
skate = callPackage ../applications/misc/skate { };