34 lines
584 B
Nix
34 lines
584 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
pkgs,
|
|
qtbase,
|
|
qttools,
|
|
wrapQtAppsHook,
|
|
pdcom ? pkgs.callPackage ./pdcom.nix {},
|
|
}:
|
|
|
|
with pkgs;
|
|
let
|
|
version="main";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "qtpdcom";
|
|
inherit version;
|
|
|
|
src = fetchGit {
|
|
url = "https://gitlab.com/etherlab.org/qtpdcom.git";
|
|
ref = "${version}";
|
|
rev = "da7b15d764220371050674ce4618562e0d87beaf"; #main
|
|
};
|
|
enableParallelBuilding = true;
|
|
|
|
buildInputs = [ qtbase qttools pdcom ];
|
|
nativeBuildInputs = [ cmake wrapQtAppsHook ];
|
|
|
|
meta = with lib; {
|
|
description = "";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|