biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / 1password-gui / darwin.nix
blob66af74630c34de37f49463fd7eaf30b572d78271
2   stdenv,
3   pname,
4   version,
5   src,
6   meta,
7   unzip,
8   undmg,
9 }:
11 stdenv.mkDerivation {
12   inherit
13     pname
14     version
15     src
16     meta
17     ;
19   nativeBuildInputs = [
20     unzip
21     undmg
22   ];
24   sourceRoot = ".";
26   installPhase = ''
27     mkdir -p $out/Applications
28     cp -r *.app $out/Applications
29   '';
31   # 1Password is notarized.
32   dontFixup = true;