Commit db0939f5 authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files
parent bc0da6f2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
  fetchFromGitHub,
  cmake,
  ctestCheckHook,
  doxygen,
  buildPackages,
  pkg-config,
  icu,
@@ -15,17 +16,18 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "nuspell";
  version = "5.1.6";
  version = "5.1.7";

  src = fetchFromGitHub {
    owner = "nuspell";
    repo = "nuspell";
    tag = "v${finalAttrs.version}";
    hash = "sha256-U/lHSxpKsBnamf4ikE2aIjEPSU5fxjtuSmhZR0jxMAI=";
    hash = "sha256-CAyM3bzIP0aYNEu94I7I1qlglPx9HJSnEkgEfjNGfvc=";
  };

  nativeBuildInputs = [
    cmake
    doxygen
    pkg-config
  ]
  ++ lib.optional enableManpages buildPackages.pandoc;