guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

28/53: gnu: Add rust-pkg-config.


From: guix-commits
Subject: 28/53: gnu: Add rust-pkg-config.
Date: Wed, 28 Aug 2019 09:55:04 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit b9d061a925f48afc9a53aae0388f77ebd7f9fc7b
Author: Efraim Flashner <address@hidden>
Date:   Wed Aug 28 16:12:15 2019 +0300

    gnu: Add rust-pkg-config.
    
    * gnu/packages/crates-io.scm (rust-pkg-config): New variable.
---
 gnu/packages/crates-io.scm | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index e793bd7..52b2e94 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -22,7 +22,8 @@
   #:use-module (guix build-system cargo)
   #:use-module (guix download)
   #:use-module ((guix licenses) #:prefix license:)
-  #:use-module (guix packages))
+  #:use-module (guix packages)
+  #:use-module (gnu packages pkg-config))
 
 ;;;
 ;;; Please: Try to add new module packages in alphabetic order.
@@ -901,6 +902,32 @@ algorithm.")
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-pkg-config
+  (package
+    (name "rust-pkg-config")
+    (version "0.3.14")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "pkg-config" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "135ia995lqzr0gxpk85h0bjxf82kj6hbxdx924sh9jdln6r8wvk7"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-development-inputs
+       (("rust-lazy-static" ,rust-lazy-static))))
+    (inputs
+     `(("pkg-config" ,pkg-config)))
+    (home-page "https://github.com/alexcrichton/pkg-config-rs";)
+    (synopsis "Library to run the pkg-config system tool")
+    (description
+     "A library to run the pkg-config system tool at build time in order to be
+used in Cargo build scripts.")
+    (license (list license:asl2.0
+                   license:expat))))
+
 (define-public rust-plain
   (package
     (name "rust-plain")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]