nixpkgs/pkgs/by-name/pu/pureref/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1014 B
Nix
Raw Permalink Normal View History

2024-10-22 19:39:25 +00:00
{
lib,
appimageTools,
runCommand,
curl,
gnugrep,
cacert,
}:
2023-01-19 21:06:52 +00:00
appimageTools.wrapType1 rec {
pname = "pureref";
2024-09-12 10:40:51 +00:00
version = "2.0.3";
2023-01-19 21:06:52 +00:00
2024-10-22 19:39:25 +00:00
src =
runCommand "PureRef-${version}_x64.Appimage"
{
nativeBuildInputs = [
curl
gnugrep
cacert
];
outputHash = "sha256-0iR1cP2sZvWWqKwRAwq6L/bmIBSYHKrlI8u8V2hANfM=";
}
''
key="$(curl -A 'nixpkgs/Please contact maintainer if there is an issue' "https://www.pureref.com/download.php" --silent | grep '%3D%3D' | cut -d '"' -f2)"
curl -L "https://www.pureref.com/files/build.php?build=LINUX64.Appimage&version=${version}&downloadKey=$key" --output $out
'';
2023-01-19 21:06:52 +00:00
meta = with lib; {
description = "Reference Image Viewer";
homepage = "https://www.pureref.com";
license = licenses.unfree;
2024-10-22 19:39:25 +00:00
maintainers = with maintainers; [
elnudev
husjon
];
2023-01-19 21:06:52 +00:00
platforms = [ "x86_64-linux" ];
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
};
}