mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13: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.
48 lines
967 B
Nix
48 lines
967 B
Nix
{ fetchFromGitHub
|
|
, freetype
|
|
, gtk3
|
|
, lib
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, SDL2
|
|
, stdenv
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gpuvis";
|
|
version = "0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mikesart";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-a9eAYDsiwyzZc4FAPo0wANysisIT4qCHLh2PrYswJtw=";
|
|
};
|
|
|
|
# patch dlopen path for gtk3
|
|
postPatch = ''
|
|
substituteInPlace src/hook_gtk3.h \
|
|
--replace "libgtk-3.so" "${lib.getLib gtk3}/lib/libgtk-3.so"
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config meson ninja wrapGAppsHook3 ];
|
|
|
|
buildInputs = [ SDL2 gtk3 freetype ];
|
|
|
|
CXXFLAGS = [
|
|
# GCC 13: error: 'uint32_t' has not been declared
|
|
"-include cstdint"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "GPU Trace Visualizer";
|
|
mainProgram = "gpuvis";
|
|
homepage = "https://github.com/mikesart/gpuvis";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ emantor ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|