diff --git a/pkgs/by-name/ct/ctune/cmake_remove_git_check.patch b/pkgs/by-name/ct/ctune/cmake_remove_git_check.patch deleted file mode 100644 index e9527217f0f2..000000000000 --- a/pkgs/by-name/ct/ctune/cmake_remove_git_check.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/CMakeLists.txt.orig b/CMakeLists.txt -index 20ba56d..85750c8 100644 ---- a/CMakeLists.txt.orig -+++ b/CMakeLists.txt -@@ -52,12 +52,7 @@ set(CMAKE_VERBOSE_MAKEFILE ON) - - #========================================== PRE-CHECKS ============================================# - find_package(PkgConfig REQUIRED) --include(FindGit) --find_package(Git) - --if (NOT Git_FOUND) -- message(FATAL_ERROR "Required package 'Git' not found on system.") --endif () - - #======================================== LIB IMPORTS =============================================# - # ======= # diff --git a/pkgs/by-name/ct/ctune/docs_cmake_fix_man_install_dir.patch b/pkgs/by-name/ct/ctune/docs_cmake_fix_man_install_dir.patch deleted file mode 100644 index 826b26e7eaf1..000000000000 --- a/pkgs/by-name/ct/ctune/docs_cmake_fix_man_install_dir.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/docs/CMakeLists.txt.orig b/docs/CMakeLists.txt -index bb4d641..b37936e 100644 ---- a/docs/CMakeLists.txt.orig -+++ b/docs/CMakeLists.txt -@@ -46,7 +46,7 @@ add_custom_command( - ) - - install(FILES ${MAN_OUT_DIR}/${MAN_OUT_FILENAME_GZ} -- DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man1 -+ DESTINATION ${MAN_INSTALL_DIR} - ) - - install(CODE "execute_process(COMMAND ${CMAKE_SOURCE_DIR}/cmake/scripts/update_mandb.sh ARGS ${CMAKE_BUILD_TYPE})") -\ No newline at end of file diff --git a/pkgs/by-name/ct/ctune/package.nix b/pkgs/by-name/ct/ctune/package.nix index 5a14f6c1b091..0e555c45bee7 100644 --- a/pkgs/by-name/ct/ctune/package.nix +++ b/pkgs/by-name/ct/ctune/package.nix @@ -18,13 +18,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "ctune"; - version = "1.3.9"; + version = "1.3.10"; src = fetchFromGitHub { owner = "An7ar35"; repo = "ctune"; tag = "v${finalAttrs.version}"; - hash = "sha256-HGCXtntsCQsWKoTbhRZ71NxfD4rFuYDE2IbGVh0Cj/E="; + hash = "sha256-pC1xlcEX1f2kGewkq88iDAZwSlcRHmBpIw1aW74X6jw="; }; nativeBuildInputs = [ @@ -54,11 +54,6 @@ stdenv.mkDerivation (finalAttrs: { "-DCMAKE_INSTALL_PREFIX=''" ]; - patches = [ - ./cmake_remove_git_check.patch - ./docs_cmake_fix_man_install_dir.patch - ]; - meta = { description = "Nice terminal nCurses (tui) internet radio player for Linux, browse and search from api.radio-browser.info"; homepage = "https://github.com/An7ar35/ctune";