mirror of
https://github.com/wlcx/home.git
synced 2025-10-11 22:43:44 +01:00
13 lines
272 B
Nix
13 lines
272 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;}
|