mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
pureref: init at 1.11.1
This commit is contained in:
parent
8625a430bd
commit
afdcfa28cc
25
pkgs/applications/graphics/pureref/default.nix
Normal file
25
pkgs/applications/graphics/pureref/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user