mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1014 B
Nix
41 lines
1014 B
Nix
{
|
|
lib,
|
|
appimageTools,
|
|
runCommand,
|
|
curl,
|
|
gnugrep,
|
|
cacert,
|
|
}:
|
|
|
|
appimageTools.wrapType1 rec {
|
|
pname = "pureref";
|
|
version = "2.0.3";
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Reference Image Viewer";
|
|
homepage = "https://www.pureref.com";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [
|
|
elnudev
|
|
husjon
|
|
];
|
|
platforms = [ "x86_64-linux" ];
|
|
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
|
};
|
|
}
|