Merge pull request #150584 from davidak/fbmark

fbmark: init at 0.3
This commit is contained in:
figsoda 2021-12-14 20:37:11 -05:00 committed by GitHub
commit b650f134be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "fbmark";
version = "0.3";
src = fetchFromGitHub {
owner = "caramelli";
repo = pname;
rev = "v${version}";
sha256 = "0n2czl2sy1k6r5ri0hp7jgq84xcwrx4x43bqvw1b4na99mqhyahn";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Linux Framebuffer Benchmark";
homepage = "https://github.com/caramelli/fbmark";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ davidak ];
platforms = platforms.linux;
};
}

View file

@ -32411,6 +32411,8 @@ with pkgs;
fahcontrol = callPackage ../applications/science/misc/foldingathome/control.nix {};
fahviewer = callPackage ../applications/science/misc/foldingathome/viewer.nix {};
fbmark = callPackage ../tools/misc/fbmark { };
foma = callPackage ../tools/misc/foma { };
foo2zjs = callPackage ../misc/drivers/foo2zjs {};