at 23.05-pre 28 lines 677 B view raw
1{ lib, stdenv, fetchFromGitHub, cmake, qtcharts, qtbase, wrapQtAppsHook }: 2 3stdenv.mkDerivation rec { 4 pname = "seer"; 5 version = "1.11"; 6 7 src = fetchFromGitHub { 8 owner = "epasveer"; 9 repo = "seer"; 10 rev = "v${version}"; 11 sha256 = "sha256-HIRNCcE1EhxsiJ5/MQZgR7IXaeM4rWoepPhALXoW7Hw="; 12 }; 13 14 preConfigure = '' 15 cd src 16 ''; 17 18 buildInputs = [ qtbase qtcharts ]; 19 nativeBuildInputs = [ cmake wrapQtAppsHook ]; 20 21 meta = with lib; { 22 description = "A Qt gui frontend for GDB"; 23 homepage = "https://github.com/epasveer/seer"; 24 license = licenses.gpl3Only; 25 platforms = platforms.linux; 26 maintainers = with maintainers; [ foolnotion ]; 27 }; 28}