summary refs log tree commit diff
path: root/pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch
diff options
context:
space:
mode:
authorJappie Klooster <jappieklooster@hotmail.com>2021-04-02 11:06:49 -0400
committerJappie Klooster <jappieklooster@hotmail.com>2021-04-03 11:02:10 -0400
commit93f9883a054b299400654adfa2851183f8648f00 (patch)
tree689324fac5d93f914d4878ee73ac486edc108f09 /pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch
parent6401be45a936dfe23256dcd29547a76047f8c18b (diff)
iodash: init at 0.1.7
IODash is required to build the latest
version of ydotool.

I'm sure as a library it has many other use
cases. It seems to be a contender towards
the well known boost library.

This init points to a temporary fork which makes
it build. The install directive was missing.
I'm intending to upstream this change if I can.
Or otherwise make this a permanent fork.

Point iodash to the right version

Add comment in iodash on repo change

Fix undefined variable src

Remove jappie from maintainer list

Update pkgs/development/libraries/iodash/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Update pkgs/development/libraries/iodash/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Update pkgs/development/libraries/iodash/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Fix dangling in

Format patch for IODash
Diffstat (limited to 'pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch')
-rw-r--r--pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch b/pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch
new file mode 100644
index 0000000000000..1868a74192087
--- /dev/null
+++ b/pkgs/development/libraries/iodash/0001-Add-cmake-install-directives.patch
@@ -0,0 +1,44 @@
+From 89c7c160f897f64e17fb74efffccfd1fc16f8b7d Mon Sep 17 00:00:00 2001
+From: Jappie Klooster <jappieklooster@hotmail.com>
+Date: Fri, 2 Apr 2021 14:22:02 -0400
+Subject: [PATCH] Add cmake install directives.
+
+To make nix builds work, it expect a `make install` command to
+be available.
+Adding these directives seems to fix the build.
+
+If it's no trouble to you, please add them.
+
+Maybe don't need endian
+---
+ CMakeLists.txt | 10 ++++++++++
+ 1 file changed, 10 insertions(+)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 06e416f..8d6f489 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -6,6 +6,8 @@ set(CMAKE_CXX_STANDARD 17)
+ add_library(IODash INTERFACE)
+ target_include_directories(IODash INTERFACE .)
+ 
++include(GNUInstallDirs)
++
+ add_executable(IODash_Test test.cpp)
+ target_link_libraries(IODash_Test IODash)
+ 
+@@ -20,3 +22,11 @@ if (DEFINED BUILD_BENCHMARKS AND (${BUILD_BENCHMARKS}))
+     target_link_libraries(boost_Benchmark_HTTP boost_system pthread)
+ endif()
+ 
++install(TARGETS IODash
++        LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
++install(FILES IODash.hpp
++        DESTINATION include/)
++
++install(FILES
++        IODash/Buffer.hpp IODash/SocketAddress.hpp IODash/File.hpp IODash/Socket.hpp IODash/EventLoop.hpp IODash/Serial.hpp IODash/Timer.hpp
++        DESTINATION include/IODash)
+-- 
+2.29.2
+