Import code
This commit is contained in:
33
qtpdcom.nix
Normal file
33
qtpdcom.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user