nixpkgs/pkgs/desktops/deepin/dde-calendar/default.nix

50 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, qttools,
2018-10-30 22:17:45 +00:00
deepin-gettext-tools, dtkcore, dtkwidget, deepin
2018-09-10 06:48:02 +00:00
}:
mkDerivation rec {
2018-09-10 06:48:02 +00:00
pname = "dde-calendar";
2019-06-22 12:26:32 +00:00
version = "1.2.10";
2018-09-10 06:48:02 +00:00
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = version;
2019-06-22 12:26:32 +00:00
sha256 = "00aqx24jccf88vvkpb9svyjz8knrqyjgd0152psf9dxc9q13f61h";
2018-09-10 06:48:02 +00:00
};
nativeBuildInputs = [
2019-06-22 12:26:32 +00:00
cmake
2018-09-10 06:48:02 +00:00
pkgconfig
qttools
deepin-gettext-tools
deepin.setupHook
2018-09-10 06:48:02 +00:00
];
buildInputs = [
dtkcore
dtkwidget
];
postPatch = ''
searchHardCodedPaths
patchShebangs translate_generation.sh
patchShebangs translate_desktop.sh
fixPath $out /usr com.deepin.Calendar.service
2018-09-10 06:48:02 +00:00
sed -i translate_desktop.sh \
-e "s,/usr/bin/deepin-desktop-ts-convert,deepin-desktop-ts-convert,"
'';
passthru.updateScript = deepin.updateScript { inherit ;name = "${pname}-${version}"; };
2018-10-30 22:17:45 +00:00
2018-09-10 06:48:02 +00:00
meta = with stdenv.lib; {
description = "Calendar for Deepin Desktop Environment";
homepage = https://github.com/linuxdeepin/dde-calendar;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ romildo ];
};
}