1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

Merge pull request #181470 from foolnotion/master

This commit is contained in:
Sandro 2022-08-05 19:47:10 +02:00 committed by GitHub
commit 8e1888fb91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 39 additions and 0 deletions

View file

@ -4394,6 +4394,15 @@
githubId = 34962634;
name = "Gabriel Arazas";
};
foolnotion = {
email = "bogdan.burlacu@pm.me";
github = "foolnotion";
githubId = 844222;
name = "Bogdan Burlacu";
keys = [{
fingerprint = "B722 6464 838F 8BDB 2BEA C8C8 5B0E FDDF BA81 6105";
}];
};
forkk = {
email = "forkk@forkk.net";
github = "Forkk";

View file

@ -0,0 +1,28 @@
{ lib, stdenv, fetchFromGitHub, cmake, qtcharts, qtbase, wrapQtAppsHook }:
stdenv.mkDerivation rec {
pname = "seer";
version = "1.7";
src = fetchFromGitHub {
owner = "epasveer";
repo = "seer";
rev = "v${version}";
sha256 = "sha256-/EuXit1kHW2cdqa5BJEj29Wu3WafVZb6DpPnIg2tDP0=";
};
preConfigure = ''
cd src
'';
buildInputs = [ qtbase qtcharts ];
nativeBuildInputs = [ cmake wrapQtAppsHook ];
meta = with lib; {
description = "A Qt gui frontend for GDB";
homepage = "https://github.com/epasveer/seer";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ foolnotion ];
};
}

View file

@ -16614,6 +16614,8 @@ with pkgs;
sd-local = callPackage ../development/tools/sd-local { };
seer = libsForQt5.callPackage ../development/tools/misc/seer { };
selenium-server-standalone = callPackage ../development/tools/selenium/server { };
selendroid = callPackage ../development/tools/selenium/selendroid { };