seer: init at 1.7
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -16610,6 +16610,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 { };
|
||||
|
||||
Reference in New Issue
Block a user