about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/seer/default.nix
diff options
context:
space:
mode:
authorBogdan Burlacu <bogdan.burlacu@pm.me>2022-08-05 16:04:13 +0200
committerBogdan Burlacu <bogdan.burlacu@pm.me>2022-08-05 16:04:13 +0200
commitffe4e6d924a5bda132a0f74b14619b25cd100dba (patch)
tree0871e47fade3e9d6d4e3ee2edf7cdca470d09ca6 /pkgs/development/tools/misc/seer/default.nix
parent2ba6470a2b4ca91776cc033c7511c7495699273d (diff)
seer: init at 1.7
Diffstat (limited to 'pkgs/development/tools/misc/seer/default.nix')
-rw-r--r--pkgs/development/tools/misc/seer/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/seer/default.nix b/pkgs/development/tools/misc/seer/default.nix
new file mode 100644
index 0000000000000..b4263220c22bd
--- /dev/null
+++ b/pkgs/development/tools/misc/seer/default.nix
@@ -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 ];
+  };
+}