git.delta.rocks / jrsonnet / refs/commits / 2c5a4bd2d3da

difftreelog

source

nixos/fleetPkgs.nix687 Bsourcehistory
1{...}: {2  nixpkgs.overlays = [3    # Not using craneLib here, because we don't want to have two different rust versions for some platforms.4    (final: prev: {5      fleet-install-secrets = prev.callPackage ({rustPlatform}:6        rustPlatform.buildRustPackage rec {7          pname = "fleet-install-secrets";8          name = "${pname}";910          src = ../.;11          strictDeps = true;1213          buildAndTestSubdir = "cmds/install-secrets";1415          cargoLock = {16            lockFile = ../Cargo.lock;17            outputHashes = {18              "alejandra-3.0.0" = "sha256-q2oTMen8E1YUbNyU4chPOj728/YR0RzdpN+bNjZX2QU=";19            };20          };21        }) {};22    })23  ];24}