Unverified Commit fbaf9090 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

kew: 3.0.3 -> 3.1.2, update script changes (#393145)

parents 06bf096a 1b8cee82
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@
  fetchFromGitHub,
  fftwFloat,
  chafa,
  curl,
  glib,
  libopus,
  opusfile,
@@ -13,24 +14,25 @@
  libogg,
  pkg-config,
  versionCheckHook,
  gitUpdater,
  nix-update-script,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "kew";
  version = "3.0.3";
  version = "3.1.2";

  src = fetchFromGitHub {
    owner = "ravachol";
    repo = "kew";
    tag = "v${finalAttrs.version}";
    hash = "sha256-DzJ+7PanA15A9nIbFPWZ/tdxq4aDyParJORcuqHV7jc=";
    hash = "sha256-64xdxRx4OanAcLgir9N7p/q71+gQYhffnWnxZzz93h8=";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [
    fftwFloat.dev
    chafa
    curl.dev
    glib.dev
    libopus
    opusfile
@@ -51,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: {
  doInstallCheck = true;

  passthru = {
    updateScript = gitUpdater { };
    updateScript = nix-update-script { };
  };

  meta = {