diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-03-18 22:35:11 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-03-19 22:33:22 +0200 |
commit | 6de81dd2d89289114d3bc6a93e79fac2a8c2a455 (patch) | |
tree | 25ad514f2690a87340f5885b921f03fc534c6c94 /gnu | |
parent | 87a3a185fe433d3497f08083c6ec7e5eb78c5fef (diff) | |
download | patches-6de81dd2d89289114d3bc6a93e79fac2a8c2a455.tar patches-6de81dd2d89289114d3bc6a93e79fac2a8c2a455.tar.gz |
gnu: Add rust-gtk-rs-lgpl-docs-0.1.
* gnu/packages/crates-io.scm (rust-gtk-rs-lgpl-docs-0.1): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 59d153dc22..112018d2e5 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7166,6 +7166,29 @@ standard printing of search results, similar to grep itself.") "Fast line oriented regex searching as a library.") (license (list license:unlicense license:expat)))) +(define-public rust-gtk-rs-lgpl-docs-0.1 + (package + (name "rust-gtk-rs-lgpl-docs") + (version "0.1.15") + (source + (origin + (method url-fetch) + (uri (crate-uri "gtk-rs-lgpl-docs" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "06b1j64zg0xmhwfkyhzh3y0apclg6qihn3f7s1bd7kgjmkia4jlr")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-rustdoc-stripper" ,rust-rustdoc-stripper-0.1)))) + (home-page "https://gtk-rs.org/") + (synopsis "LGPL-licensed docs for Gtk-rs crates") + (description + "LGPL-licensed docs for Gtk-rs crates.") + (license license:lgpl2.0))) + (define-public rust-gzip-header-0.3 (package (name "rust-gzip-header") |