From dfb72b837be8285612c303e056503e71ca5539ce Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Wed, 20 Mar 2024 12:37:34 +0100 Subject: Rename the imported private directory as package directory --- private/komodo/cpprestsdk.scm | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 private/komodo/cpprestsdk.scm (limited to 'private/komodo/cpprestsdk.scm') diff --git a/private/komodo/cpprestsdk.scm b/private/komodo/cpprestsdk.scm deleted file mode 100644 index a558b25..0000000 --- a/private/komodo/cpprestsdk.scm +++ /dev/null @@ -1,42 +0,0 @@ -(define-module (cpprestsdk) - #:use-module (gnu packages boost) - #:use-module (gnu packages compression) - #:use-module (gnu packages tls) - #:use-module (gnu packages web) - #:use-module (guix build-system cmake) - #:use-module (guix gexp) - #:use-module (guix git-download) - #:use-module ((guix licenses) - #:prefix license:) - #:use-module (guix packages)) - -(define-public cpprestsdk - (package - (name "cpprestsdk") - (version "v2.10.16") - (source - (origin - (uri - (git-reference - ;; This fork includes a fix to an out-of-bounds error. - (url "https://github.com/priv-kweihmann/cpprestsdk") - (commit "gcc10-64bit"))) - (method git-fetch) - (hash - (content-hash - "03cd0p0fjvfi94avqvf00g89a9qqkj2r7skm4xnvr4p7hihw1ikd")))) - (build-system cmake-build-system) - (arguments - (list - #:phases - #~ (modify-phases %standard-phases (delete 'check)))) - (native-inputs (list boost openssl websocketpp zlib)) - (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 "https://github.com/microsoft/cpprestsdk"))) -- cgit v1.2.3