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

55 lines
1.2 KiB
Nix
Raw Normal View History

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