mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
29 lines
677 B
Nix
29 lines
677 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, qtcharts, qtbase, wrapQtAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "seer";
|
|
version = "1.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "epasveer";
|
|
repo = "seer";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-HIRNCcE1EhxsiJ5/MQZgR7IXaeM4rWoepPhALXoW7Hw=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|