Skip to content

Commit

Permalink
Merge pull request #214857 from dotlambda/kbibtex-0.9.3.1
Browse files Browse the repository at this point in the history
kbibtex: 0.9.2 -> 0.9.3.1
  • Loading branch information
NickCao authored Feb 7, 2023
2 parents 8a6b4f7 + d1dc61f commit 27cde43
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkgs/applications/office/kbibtex/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
, extra-cmake-modules
, shared-mime-info
# Qt
, qtnetworkauth
, qtxmlpatterns
, qtwebengine
, qca-qt5
Expand All @@ -28,11 +29,13 @@

mkDerivation rec {
pname = "kbibtex";
version = "0.9.2";
version = "0.9.3.1";

src = fetchurl {
url = "mirror://kde/stable/KBibTeX/${version}/kbibtex-${version}.tar.xz";
sha256 = "09xcdx363z9hps3wbr1kx96a6q6678y8pg8r3apyps4xm7xm31nr";
src = let
majorMinorPatch = lib.concatStringsSep "." (lib.take 3 (lib.splitVersion version));
in fetchurl {
url = "mirror://kde/stable/KBibTeX/${majorMinorPatch}/kbibtex-${version}.tar.xz";
hash = "sha256-kH/E5xv9dmzM7WrIMlGCo4y0Xv/7XHowELJP3OJz8kQ=";
};

nativeBuildInputs = [
Expand All @@ -41,6 +44,7 @@ mkDerivation rec {
];

buildInputs = [
qtnetworkauth
qtxmlpatterns
qtwebengine
qca-qt5
Expand Down

0 comments on commit 27cde43

Please sign in to comment.