mirror of
https://github.com/wlcx/home.git
synced 2025-12-08 19:43:46 +00:00
16 lines
268 B
Nix
16 lines
268 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
stdenv,
|
|
}:
|
|
let
|
|
zbar = pkgs.zbar.override { enableVideo = false; };
|
|
in
|
|
(pkgs.writeShellScriptBin "qrclip" ''
|
|
set -eo pipefail
|
|
${pkgs.pngpaste}/bin/pngpaste - | ${zbar}/bin/zbarimg --raw -q1 -
|
|
'')
|
|
// {
|
|
meta.platforms = lib.platforms.darwin;
|
|
}
|