Import code

This commit is contained in:
2023-08-16 08:42:22 +03:00
parent e68ca13c9c
commit 60d331434c
10 changed files with 471 additions and 0 deletions

33
qtpdcom.nix Normal file
View File

@@ -0,0 +1,33 @@
{
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;
};
}