mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 12:30:38 +02:00
gnu: rust-mysqlclient-sys-0.2: Move to (gnu packages crates-database).
* gnu/packages/crates-io.scm (rust-mysqlclient-sys-0.2): Move from here * gnu/packages/crates-database.scm: ... to here. Change-Id: Ic6ec172fe2943911480121328fffcff08fd4d683
This commit is contained in:
parent
265bb980bf
commit
fe5700ffa3
2 changed files with 27 additions and 25 deletions
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
||||
;;; Copyright © 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||
;;; Copyright © 2021, 2023, 2024 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;;
|
||||
|
@ -29,6 +30,7 @@
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (gnu packages crates-io)
|
||||
#:use-module (gnu packages databases)
|
||||
#:use-module (gnu packages sqlite))
|
||||
|
||||
(define-public rust-libsqlite3-sys-0.30
|
||||
|
@ -185,6 +187,31 @@
|
|||
("rust-pkg-config" ,rust-pkg-config-0.3)
|
||||
("rust-vcpkg" ,rust-vcpkg-0.2))))))
|
||||
|
||||
(define-public rust-mysqlclient-sys-0.2
|
||||
(package
|
||||
(name "rust-mysqlclient-sys")
|
||||
(version "0.2.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "mysqlclient-sys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16wndr59cbpc2wgli45zfgi0hi837pbrsh1aqh2k0ads50akh6zn"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-pkg-config" ,rust-pkg-config-0.3)
|
||||
("rust-vcpkg" ,rust-vcpkg-0.2))))
|
||||
(native-inputs
|
||||
(list `(,mariadb "lib")))
|
||||
(home-page "https://github.com/sgrif/mysqlclient-sys")
|
||||
(synopsis "Auto-generated rust bindings for libmysqlclient")
|
||||
(description "This package provides auto-generated rust bindings for
|
||||
libmysqlclient.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-rusqlite-0.32
|
||||
(package
|
||||
(name "rust-rusqlite")
|
||||
|
|
|
@ -47168,31 +47168,6 @@ library.")
|
|||
(description "This package provides a Rust implementation of Mustache.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-mysqlclient-sys-0.2
|
||||
(package
|
||||
(name "rust-mysqlclient-sys")
|
||||
(version "0.2.5")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "mysqlclient-sys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"16wndr59cbpc2wgli45zfgi0hi837pbrsh1aqh2k0ads50akh6zn"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-pkg-config" ,rust-pkg-config-0.3)
|
||||
("rust-vcpkg" ,rust-vcpkg-0.2))))
|
||||
(native-inputs
|
||||
(list `(,mariadb "lib")))
|
||||
(home-page "https://github.com/sgrif/mysqlclient-sys")
|
||||
(synopsis "Auto-generated rust bindings for libmysqlclient")
|
||||
(description "This package provides auto-generated rust bindings for
|
||||
libmysqlclient.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-nalgebra-0.32
|
||||
(package
|
||||
(name "rust-nalgebra")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue