mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
36 lines
823 B
Nix
36 lines
823 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, fmt }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "termbench-pro";
|
|
version = "unstable-2023-01-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "contour-terminal";
|
|
repo = "termbench-pro";
|
|
rev = "a4feadd3a698e4fe2d9dd5b03d5f941534a25a91";
|
|
hash = "sha256-/zpJY9Mecalk7dneYZYzmFOroopFGklWw62a+LbiUVs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ fmt ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/lib
|
|
mv termbenchpro/tbp $out/bin
|
|
mv libtermbench/libtermbench.a $out/lib
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Terminal Benchmarking as CLI and library";
|
|
mainProgram = "tbp";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ moni ];
|
|
};
|
|
}
|