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:
commit
8e1888fb91
|
@ -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";
|
||||
|
|
28
pkgs/development/tools/misc/seer/default.nix
Normal file
28
pkgs/development/tools/misc/seer/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue