Unverified Commit b5371bdd authored by Fabián Heredia Montiel's avatar Fabián Heredia Montiel Committed by GitHub
Browse files

nuspell: 5.1.6 -> 5.1.7 (#465742)

parents ca0b615b db0939f5
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;