diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-16 09:45:43 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-20 12:35:17 +0100 |
commit | 66f34078689c54a158060405c66aff553f1ab698 (patch) | |
tree | 5e6fc699264e7620df4004693c5010157157fd5f /private/komodo/cpprestsdk.scm | |
parent | db4a49bcbc8da539fb4db078966cfd6e3927abfc (diff) |
Define and include cpprestsdk as dependency of komodo-wallet
Diffstat (limited to 'private/komodo/cpprestsdk.scm')
-rw-r--r-- | private/komodo/cpprestsdk.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/private/komodo/cpprestsdk.scm b/private/komodo/cpprestsdk.scm new file mode 100644 index 0000000..3b9e780 --- /dev/null +++ b/private/komodo/cpprestsdk.scm @@ -0,0 +1,33 @@ +(define-module (cpprestsdk) + #:use-module (guix build-system cmake) + #:use-module (guix git-download) + #:use-module ((guix licenses) + #:prefix license:) + #:use-module (guix packages)) + +(define-public cpprestsdk + (let ((cpprestsdk-github "https://github.com/microsoft/cpprestsdk") + (cpprestsdk-version "v2.10.19")) + (package + (name "cpprestsdk") + (version cpprestsdk-version) + (source + (origin + (uri + (git-reference + (url cpprestsdk-github) + (commit cpprestsdk-version))) + (method git-fetch) + (hash + (content-hash + "09pb16aqs4x6xgsvj6fpwxzqa4px11j5qigcpjsb3hbsbkvsd9nc")))) + (build-system cmake-build-system) + (synopsis "The Microsoft C++ REST SDK") + (description + (string-append + "The C++ REST SDK is a Microsoft project for cloud-based client-server " + "communication in native code using a modern asynchronous C++ API design. " + "This project aims to help C++ developers connect to and interact with " + "services.")) + (license license:expat) + (home-page cpprestsdk-github)))) |