mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
a3b5010856
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dde-calendar/versions
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, qmake, qttools,
|
|
deepin-gettext-tools, dtkcore, dtkwidget, deepin
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
pname = "dde-calendar";
|
|
version = "1.2.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxdeepin";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0k973rv0prvr7cg1xwg7kr14fkx13aslhiqc3q7vpakfk53qsw4n";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
qmake
|
|
qttools
|
|
deepin-gettext-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
dtkcore
|
|
dtkwidget
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
sed -i translate_desktop.sh \
|
|
-e "s,/usr/bin/deepin-desktop-ts-convert,deepin-desktop-ts-convert,"
|
|
sed -i com.deepin.Calendar.service \
|
|
-e "s,/usr,$out,"
|
|
'';
|
|
|
|
passthru.updateScript = deepin.updateScript { inherit name; };
|
|
|
|
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 ];
|
|
};
|
|
}
|