b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
28 lines
676 B
Nix
28 lines
676 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, qtcharts, qtbase, wrapQtAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seer";
|
|
version = "1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "epasveer";
|
|
repo = "seer";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-YIxKjykhuxTAr0kEmlj2JFA2NRs1vknpoJAGEoshwtg=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|