Commit 1513db9e authored by Tomo's avatar Tomo
Browse files

kgeotag: use stdenv.mkDerivation

Part of #180841
parent 7c692619
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
{ cmake, extra-cmake-modules, fetchFromGitLab, lib, libsForQt5 }:
{ stdenv, cmake, extra-cmake-modules, fetchFromGitLab, lib, libsForQt5 }:

libsForQt5.mkDerivation rec {
stdenv.mkDerivation rec {
  pname = "kgeotag";
  version = "1.5.0";

@@ -12,7 +12,7 @@ libsForQt5.mkDerivation rec {
    hash = "sha256-G9SyGvoSOL6nsWnMuSIUSFHFUwZUzExBJBkKN46o8GI=";
  };

  nativeBuildInputs = [ cmake extra-cmake-modules ];
  nativeBuildInputs = [ cmake extra-cmake-modules libsForQt5.wrapQtAppsHook ];

  buildInputs = [ libsForQt5.libkexiv2 libsForQt5.marble ];