mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
1c2328751c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dtkwidget/versions
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, qmake, qttools, qtmultimedia,
|
|
qtsvg, qtx11extras, librsvg, libstartup_notification, gsettings-qt,
|
|
dde-qt-dbus-factory, dtkcore, deepin }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "dtkwidget";
|
|
version = "2.0.9.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0757dzy82bfv97b1gzkwa9zx3jzfbap20v3r1h7lkfcfw95410iw";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
qmake
|
|
qttools
|
|
];
|
|
|
|
buildInputs = [
|
|
qtmultimedia
|
|
qtsvg
|
|
qtx11extras
|
|
librsvg
|
|
libstartup_notification
|
|
gsettings-qt
|
|
dde-qt-dbus-factory
|
|
dtkcore
|
|
];
|
|
|
|
preConfigure = ''
|
|
qmakeFlags="$qmakeFlags \
|
|
INCLUDE_INSTALL_DIR=$out/include \
|
|
LIB_INSTALL_DIR=$out/lib \
|
|
QT_HOST_DATA=$out"
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.updateScript = deepin.updateScript { inherit name; };
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Deepin graphical user interface library";
|
|
homepage = https://github.com/linuxdeepin/dtkwidget;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ romildo ];
|
|
};
|
|
}
|