diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2020-07-31 23:18:03 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-07-31 23:18:03 +0300 |
| commit | 39f99a01cee0d93151e1fb05d9a6dfd17976a141 (patch) | |
| tree | d40852e5c9058bce3b91b903572a99dd035f6fcc | |
| parent | Revert delete .guix-channel. (diff) | |
| download | guix-wigust-39f99a01cee0d93151e1fb05d9a6dfd17976a141.tar.gz | |
gnu: Add documentation-supermicro-3u-mnl-2197.
* guix/wigust/packages/documentation.scm (documentation-supermicro-3u-mnl-2197):
New variable.
| -rw-r--r-- | guix/wigust/packages/documentation.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/guix/wigust/packages/documentation.scm b/guix/wigust/packages/documentation.scm index 444a418..45a27a0 100644 --- a/guix/wigust/packages/documentation.scm +++ b/guix/wigust/packages/documentation.scm @@ -125,3 +125,26 @@ to Bash advances usage.") (synopsis "ARCCONF Command Line Utility") (description "Microsemi Smart Storage Controllers User's Guide.") (license #f))) + +(define-public documentation-supermicro-3u-mnl-2197 + (package + (name "documentation-supermicro-superserver-3u-mnl-2197") + (version "0.0.1") + (source (origin + (method url-fetch) + (uri (string-append "https://www.supermicro.com/manuals/superserver/3U/MNL-2197.pdf")) + (file-name (string-append name "-" version ".pdf")) + (sha256 + (base32 + "0i7bbhp1nqv31q4nhd47gcig5jbi0zdwaxvdkcf2rbv27409sb9f")))) + (build-system copy-build-system) + (arguments + `(#:install-plan + `((,(assoc-ref %build-inputs "source") + ,(let ((title (string-drop ,name (string-length "documentation-")))) + (string-append "/share/doc/" title "/" title ".pdf")))) + #:phases (modify-phases %standard-phases (delete 'unpack)))) + (home-page "http://download.adaptec.com/pdfs/user_guides/") + (synopsis "superserver-3u-mnl-2197") + (description "superserver-3u-mnl-2197") + (license #f))) |
