tellico: 3.3.0 -> 3.3.3

+21 -19
+21 -19
pkgs/applications/misc/tellico/default.nix
··· 18 , poppler 19 , makeWrapper 20 , kdoctools 21 }: 22 23 mkDerivation rec { 24 name = "tellico"; 25 - version = "3.3.0"; 26 27 src = fetchurl { 28 - url = "https://tellico-project.org/files/tellico-${lib.versions.majorMinor version}.tar.xz"; 29 - sha256 = "1digkpvzrsbv5znf1cgzs6zkmysfz6lzs12n12mrrpgkcdxc426y"; 30 }; 31 - 32 - patches = [ 33 - ./hex.patch 34 - ]; 35 36 nativeBuildInputs = [ 37 cmake ··· 41 ]; 42 43 buildInputs = [ 44 - kdelibs4support 45 - solid 46 - kxmlgui 47 karchive 48 kfilemetadata 49 khtml 50 knewstuff 51 - libksane 52 - cmake 53 - exempi 54 - extra-cmake-modules 55 libcdio 56 - kdeApplications.libkcddb 57 poppler 58 ]; 59 60 - meta = { 61 description = "Collection management software, free and simple"; 62 homepage = "https://tellico-project.org/"; 63 - maintainers = with lib.maintainers; [ numkem ]; 64 - license = with lib.licenses; [ gpl2 gpl3 ]; 65 - platforms = lib.platforms.linux; 66 }; 67 }
··· 18 , poppler 19 , makeWrapper 20 , kdoctools 21 + , taglib 22 }: 23 24 mkDerivation rec { 25 name = "tellico"; 26 + version = "3.3.3"; 27 28 src = fetchurl { 29 + # version 3.3.0 just uses 3.3 in its name 30 + urls = [ 31 + "https://tellico-project.org/files/tellico-${version}.tar.xz" 32 + "https://tellico-project.org/files/tellico-${lib.versions.majorMinor version}.tar.xz" 33 + ]; 34 + sha256 = "sha256-9cdbUTa2Mt3/yNylOSdGjgDETD74sR0dU4C58uW0Y6o="; 35 }; 36 37 nativeBuildInputs = [ 38 cmake ··· 42 ]; 43 44 buildInputs = [ 45 + cmake 46 + exempi 47 + extra-cmake-modules 48 karchive 49 + kdeApplications.libkcddb 50 + kdelibs4support 51 kfilemetadata 52 khtml 53 knewstuff 54 + kxmlgui 55 libcdio 56 + libksane 57 poppler 58 + solid 59 + taglib 60 ]; 61 62 + meta = with lib; { 63 description = "Collection management software, free and simple"; 64 homepage = "https://tellico-project.org/"; 65 + license = with licenses; [ gpl2 gpl3 ]; 66 + maintainers = with maintainers; [ numkem ]; 67 + platforms = platforms.linux; 68 }; 69 }