To reproduce:
$ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
-- scan --update-all --inline-rules '
id: nix-x86_64-darwin
language: nix
rule:
any:
- pattern: "\"x86_64-darwin\""
kind: list_expression > string_expression
- pattern:
context: "{ \"x86_64-darwin\" = $EXPR; }"
selector: binding
- pattern:
context: "{ x86_64-darwin = $EXPR; }"
selector: binding
fix:
template: ""
' pkgs
$ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
-- scan --update-all --inline-rules '
id: json-first-x86_64-darwin
language: json
rule:
kind: object > pair:nth-child(1)
has:
pattern: "\"x86_64-darwin\""
field: key
fix:
template: ""
expandEnd: { regex: "," }
' pkgs
$ nix run nixpkgs/3b32825de172d0bc85664f495edb096b10862524#ast-grep \
-- scan --update-all --inline-rules '
id: json-x86_64-darwin
language: json
rule:
kind: object > pair
has:
pattern: "\"x86_64-darwin\""
field: key
fix:
template: ""
expandStart: { regex: "," }
' pkgs
$ git restore pkgs/by-name/om/omnix/package.nix
$ git diff --name-only -z \
| nix shell nixpkgs/3b32825de172d0bc85664f495edb096b10862524#gnused \
-c xargs -0 sed -i '/^$/N; /^\n\? \+$/d'
$ treefmt
101 lines
2.6 KiB
Nix
101 lines
2.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fetchzip,
|
|
autoPatchelfHook,
|
|
installShellFiles,
|
|
cpio,
|
|
xar,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
let
|
|
inherit (stdenv.hostPlatform) system;
|
|
fetch =
|
|
srcPlatform: hash: extension:
|
|
let
|
|
args = {
|
|
url = "https://cache.agilebits.com/dist/1P/op2/pkg/v${version}/op_${srcPlatform}_v${version}.${extension}";
|
|
inherit hash;
|
|
}
|
|
// lib.optionalAttrs (extension == "zip") { stripRoot = false; };
|
|
in
|
|
if extension == "zip" then fetchzip args else fetchurl args;
|
|
|
|
pname = "1password-cli";
|
|
version = "2.34.1";
|
|
sources = {
|
|
aarch64-linux = fetch "linux_arm64" "sha256-uEukRq71eeayvNguD9XepvP1Br5AkE2Ag/Chv2idf4A=" "zip";
|
|
i686-linux = fetch "linux_386" "sha256-p/F3YZLJnlimrVE2qxTHvIB4m47kuwhoCWTC40VIvMs=" "zip";
|
|
x86_64-linux = fetch "linux_amd64" "sha256-oAABMlwwv5X91TT6FK2aPpg+e2CvmHT1rqIVRTjQNCQ=" "zip";
|
|
aarch64-darwin =
|
|
fetch "apple_universal" "sha256-vp1Y1M6DUanx1CAVhLrqgBovwws6Y/5jOgnwTZE8Hhc="
|
|
"pkg";
|
|
};
|
|
platforms = builtins.attrNames sources;
|
|
mainProgram = "op";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
inherit pname version;
|
|
src =
|
|
if (builtins.elem system platforms) then
|
|
sources.${system}
|
|
else
|
|
throw "Source for 1password-cli is not available for ${system}";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
versionCheckHook
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isLinux autoPatchelfHook
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
xar
|
|
cpio
|
|
];
|
|
|
|
unpackPhase = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
xar -xf $src
|
|
zcat op.pkg/Payload | cpio -i
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D op $out/bin/op
|
|
runHook postInstall
|
|
'';
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
HOME=$TMPDIR
|
|
installShellCompletion --cmd op \
|
|
--bash <($out/bin/op completion bash) \
|
|
--fish <($out/bin/op completion fish) \
|
|
--zsh <($out/bin/op completion zsh)
|
|
'';
|
|
|
|
dontStrip = stdenv.hostPlatform.isDarwin;
|
|
|
|
doInstallCheck = true;
|
|
|
|
versionCheckProgram = "${placeholder "out"}/bin/op";
|
|
|
|
passthru = {
|
|
updateScript = ./update.sh;
|
|
};
|
|
|
|
meta = {
|
|
description = "1Password command-line tool";
|
|
homepage = "https://developer.1password.com/docs/cli/";
|
|
downloadPage = "https://app-updates.agilebits.com/product_history/CLI2";
|
|
maintainers = with lib.maintainers; [
|
|
joelburget
|
|
khaneliman
|
|
savtrip
|
|
];
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
license = lib.licenses.unfree;
|
|
inherit mainProgram platforms;
|
|
};
|
|
}
|