nixpkgs/pkgs/desktops/deepin/dtkcore/default.nix

64 lines
1.3 KiB
Nix
Raw Normal View History

2020-05-03 19:52:19 +00:00
{ stdenv
, mkDerivation
, fetchFromGitHub
, pkgconfig
, qmake
, gsettings-qt
, pythonPackages
, deepin
}:
2018-09-01 11:19:20 +00:00
mkDerivation rec {
2018-09-01 11:19:20 +00:00
pname = "dtkcore";
2019-11-12 01:08:40 +00:00
version = "2.1.1";
2018-09-01 11:19:20 +00:00
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
2019-11-12 01:08:40 +00:00
sha256 = "0xdh6mmrv8yr6mjmlwj0fv037parkkwfwlaibcbrskwxqp9iri1y";
2018-09-01 11:19:20 +00:00
};
nativeBuildInputs = [
pkgconfig
qmake
pythonPackages.wrapPython
2019-05-04 11:42:00 +00:00
deepin.setupHook
2018-09-01 11:19:20 +00:00
];
buildInputs = [
gsettings-qt
];
postPatch = ''
2019-05-04 11:42:00 +00:00
searchHardCodedPaths # debugging
2018-09-01 11:19:20 +00:00
# Fix shebang
sed -i tools/script/dtk-translate.py -e "s,#!env,#!/usr/bin/env,"
'';
qmakeFlags = [
"DTK_VERSION=${version}"
2019-11-12 01:08:40 +00:00
"LIB_INSTALL_DIR=${placeholder "out"}/lib"
"MKSPECS_INSTALL_DIR=${placeholder "out"}/mkspecs"
];
2018-09-01 11:19:20 +00:00
postFixup = ''
2019-11-12 01:08:40 +00:00
chmod +x $out/lib/libdtk-${version}/DCore/bin/*.py
wrapPythonProgramsIn "$out/lib/libdtk-${version}/DCore/bin" "$out $pythonPath"
2019-05-04 11:42:00 +00:00
searchHardCodedPaths $out # debugging
2018-09-01 11:19:20 +00:00
'';
enableParallelBuilding = true;
passthru.updateScript = deepin.updateScript { inherit pname version src; };
2018-10-30 22:17:45 +00:00
2018-09-01 11:19:20 +00:00
meta = with stdenv.lib; {
2019-11-12 01:08:40 +00:00
description = "Deepin tool kit core library";
homepage = "https://github.com/linuxdeepin/dtkcore";
2018-09-01 11:19:20 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}