mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchgit
|
|
, writeShellScript
|
|
, unstableGitUpdater
|
|
, sd
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "goperf";
|
|
version = "0-unstable-2024-09-05";
|
|
|
|
src = fetchgit {
|
|
url = "https://go.googlesource.com/perf";
|
|
rev = "ce4811554b022ac27d024d355ad160e95079bec1";
|
|
hash = "sha256-kJJod7Qma3++lrctezYltB9hV8/gH/CycHrk+GpOasE=";
|
|
};
|
|
|
|
vendorHash = "sha256-VWywJ1LalYcfOQjrC0sLBfbQyIg8fYv4paMlIfa3RxI=";
|
|
|
|
passthru.updateScript = writeShellScript "update-goperf" ''
|
|
export UPDATE_NIX_ATTR_PATH=goperf
|
|
${lib.escapeShellArgs (unstableGitUpdater { inherit (src) url; })}
|
|
set -x
|
|
oldhash="$(nix-instantiate . --eval --strict -A "goperf.goModules.drvAttrs.outputHash" | cut -d'"' -f2)"
|
|
newhash="$(nix-build -A goperf.goModules --no-out-link 2>&1 | tail -n3 | grep 'got:' | cut -d: -f2- | xargs echo || true)"
|
|
fname="$(nix-instantiate --eval -E 'with import ./. {}; (builtins.unsafeGetAttrPos "version" goperf).file' | cut -d'"' -f2)"
|
|
${lib.getExe sd} --string-mode "$oldhash" "$newhash" "$fname"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tools and packages for analyzing Go benchmark results";
|
|
homepage = "https://cs.opensource.google/go/x/perf";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ pbsds ];
|
|
};
|
|
}
|