tellico: 3.3.0 -> 3.3.3

This commit is contained in:
Peter Hoeg 2020-10-12 11:59:13 +08:00
parent 58a6d078f0
commit be2c00811b

View File

@ -18,20 +18,21 @@
, poppler , poppler
, makeWrapper , makeWrapper
, kdoctools , kdoctools
, taglib
}: }:
mkDerivation rec { mkDerivation rec {
name = "tellico"; name = "tellico";
version = "3.3.0"; version = "3.3.3";
src = fetchurl { src = fetchurl {
url = "https://tellico-project.org/files/tellico-${lib.versions.majorMinor version}.tar.xz"; # version 3.3.0 just uses 3.3 in its name
sha256 = "1digkpvzrsbv5znf1cgzs6zkmysfz6lzs12n12mrrpgkcdxc426y"; urls = [
}; "https://tellico-project.org/files/tellico-${version}.tar.xz"
"https://tellico-project.org/files/tellico-${lib.versions.majorMinor version}.tar.xz"
patches = [
./hex.patch
]; ];
sha256 = "sha256-9cdbUTa2Mt3/yNylOSdGjgDETD74sR0dU4C58uW0Y6o=";
};
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
@ -41,27 +42,28 @@ mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
kdelibs4support
solid
kxmlgui
karchive
kfilemetadata
khtml
knewstuff
libksane
cmake cmake
exempi exempi
extra-cmake-modules extra-cmake-modules
libcdio karchive
kdeApplications.libkcddb kdeApplications.libkcddb
kdelibs4support
kfilemetadata
khtml
knewstuff
kxmlgui
libcdio
libksane
poppler poppler
solid
taglib
]; ];
meta = { meta = with lib; {
description = "Collection management software, free and simple"; description = "Collection management software, free and simple";
homepage = "https://tellico-project.org/"; homepage = "https://tellico-project.org/";
maintainers = with lib.maintainers; [ numkem ]; license = with licenses; [ gpl2 gpl3 ];
license = with lib.licenses; [ gpl2 gpl3 ]; maintainers = with maintainers; [ numkem ];
platforms = lib.platforms.linux; platforms = platforms.linux;
}; };
} }