46 lines
858 B
Nix
46 lines
858 B
Nix
|
{ stdenv
|
||
|
, lib
|
||
|
, fetchFromGitHub
|
||
|
, pkg-config
|
||
|
, cmake
|
||
|
, qtbase
|
||
|
, qttools
|
||
|
, wrapQtAppsHook
|
||
|
, glib
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "dtkcommon";
|
||
|
version = "5.6.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "linuxdeepin";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-9gFJ0Uun0q/XVaegxTUu4Kkc+/GE09eAV68VZgWurrM=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkg-config
|
||
|
qttools
|
||
|
wrapQtAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = [ qtbase ];
|
||
|
|
||
|
qmakeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||
|
|
||
|
preFixup = ''
|
||
|
glib-compile-schemas ${glib.makeSchemaPath "$out" "${pname}-${version}"}
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "A public project for building DTK Library";
|
||
|
homepage = "https://github.com/linuxdeepin/dtkcommon";
|
||
|
license = licenses.gpl3Plus;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = teams.deepin.members;
|
||
|
};
|
||
|
}
|