mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
imagemagick,
|
|
qrencode,
|
|
testQR ? false,
|
|
zbar ? null,
|
|
}:
|
|
assert testQR -> zbar != false;
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "asc-key-to-qr-code-gif";
|
|
version = "0-unstable-2019-01-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yishilin14";
|
|
repo = "asc-key-to-qr-code-gif";
|
|
rev = "5d36a1bada8646ae0f61b04356e62ba5ef10a1aa";
|
|
hash = "sha256-DwxYgBsioL86WM6KBFJ+DuSJo3/1pwD1Fl156XD98RY=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
postPatch =
|
|
let
|
|
substitutions =
|
|
[
|
|
''--replace-fail "convert" "${lib.getExe imagemagick}"''
|
|
''--replace-fail "qrencode" "${lib.getExe qrencode}"''
|
|
]
|
|
++ lib.optionals testQR [
|
|
''--replace-fail "hash zbarimg" "true"'' # hash does not work on NixOS
|
|
''--replace-fail "$(zbarimg --raw" "$(${zbar}/bin/zbarimg --raw"''
|
|
];
|
|
in
|
|
''
|
|
substituteInPlace asc-to-gif.sh ${lib.concatStringsSep " " substitutions}
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/bin
|
|
cp asc-to-gif.sh $out/bin/asc-to-gif
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/yishilin14/asc-key-to-qr-code-gif";
|
|
description = "Convert ASCII-armored PGP keys to animated QR code";
|
|
license = lib.licenses.unfree; # program does not have a license
|
|
mainProgram = "asc-to-gif";
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [
|
|
asymmetric
|
|
NotAShelf
|
|
];
|
|
};
|
|
}
|